Skip to content

Commit

Permalink
fix: missing collections filter
Browse files Browse the repository at this point in the history
  • Loading branch information
mihow committed Nov 28, 2024
1 parent 884d400 commit fd152dc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ui/src/utils/useFilters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ export const AVAILABLE_FILTERS = [
},
{
label: 'Collection',
field: 'source_image_collection', // TODO: Can we update this key to "collection" to streamline?
field: 'collection', // This is for viewing Occurrences by collection
},
{
label: 'Source image collection',
field: 'source_image_collection', // This is for viewing Jobs by collection. @TODO can we update this key to "collection" to streamline?
},
{
label: 'Station',
Expand Down Expand Up @@ -49,10 +53,6 @@ export const AVAILABLE_FILTERS = [
label: 'Source image',
field: 'source_image_single', // TODO: Can we update this key to "source_image" to streamline?
},
{
label: 'Source image collection',
field: 'source_image_collection',
},
{
label: 'Status',
field: 'status',
Expand Down

0 comments on commit fd152dc

Please sign in to comment.