Skip to content

Commit

Permalink
Type fixes buildable
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianlinkflink committed Dec 9, 2024
1 parent ecb15f6 commit 15747ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions src/components/Graphs/DataTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,12 @@
</template>

<script lang="ts">
import { defineComponent, PropType } from 'vue'
import { defineComponent } from 'vue'
import { emissionToNumber } from '@/utils/resultUtils'
import type { PropType } from 'vue'
import type { ResultItem, GroupedResults } from '@/models/result'
import { useResultStore } from '@/stores/result'
import { storeToRefs } from 'pinia';
export default defineComponent({
name: 'ResultTable',
Expand Down
2 changes: 1 addition & 1 deletion src/models/result.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Emission } from '@/models/material'
import { Quantity } from '@/models/geometryObject'
import type { Quantity } from '@/models/geometryObject'

/**
* Grouped results interface to store the results grouped by a parameter
Expand Down

0 comments on commit 15747ca

Please sign in to comment.