Skip to content

Commit

Permalink
fixed types
Browse files Browse the repository at this point in the history
  • Loading branch information
theorm committed Feb 19, 2025
1 parent 1be10dd commit 1781a13
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/SearchImages.vue
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ import FacetModel from '@/models/Facet'
import { useUserStore } from '@/stores/user'
import { mapStores } from 'pinia'
import { Navigation } from '@/plugins/Navigation'
import { defineComponent } from 'vue'
import { IImage } from '@/models'
import { defineComponent, PropType } from 'vue'
import { IImage, Filter } from '@/models'
const AllowedFilterTypes = ['newspaper', 'isFront', 'daterange', 'title']
Expand All @@ -198,7 +198,7 @@ export default defineComponent({
default: true
},
filtersWithItems: {
type: Array,
type: Array as PropType<Filter[]>,
default: () => []
}
},
Expand Down

0 comments on commit 1781a13

Please sign in to comment.