Skip to content

Commit 22dc77a

Browse files
- FIX: Fixed build errors.
1 parent f94377d commit 22dc77a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/modals/GridScoreExportModal.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<v-btn
3333
block
3434
class="mb-5"
35-
:color="!trial ? 'primary' : null"
35+
:color="!trial ? 'primary' : undefined"
3636
prepend-icon="mdi-file-arrow-up-down-outline"
3737
text="Load trial information"
3838
@click="loadTrial"
@@ -147,7 +147,7 @@
147147
import { formatTimeAgo, getGridScoreColumnIndex, getGridScoreRowIndex, toLocalDateString } from '@/plugins/util'
148148
import type { Trait, Trial } from '@/types/gridscore'
149149
import axios, { type AxiosResponse } from 'axios'
150-
import { TraitMeasurement } from '../../types/gridscore'
150+
import type { TraitMeasurement } from '../../types/gridscore'
151151
152152
export interface Options {
153153
images?: Tab[]

0 commit comments

Comments
 (0)