Skip to content

Commit

Permalink
Fix [Feature store] uniformity of tag filter labels (#2184)
Browse files Browse the repository at this point in the history
  • Loading branch information
Taras-Hlukhovetskyi authored Jan 12, 2024
1 parent bf33f08 commit b68d61d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export const featureSetsInfoHeaders = [
]

export const featureVectorsFilters = [
{ type: TAG_FILTER, label: 'Tag:' },
{ type: TAG_FILTER, label: 'Version Tag:' },
{ type: NAME_FILTER, label: 'Name:' },
{ type: LABELS_FILTER, label: 'Labels:' }
]
Expand Down
2 changes: 1 addition & 1 deletion src/components/FeatureStore/Features/features.util.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { LABELS_FILTER, NAME_FILTER, TAG_FILTER } from '../../../constants'
import featureStoreActions from '../../../actions/featureStore'

export const featuresFilters = [
{ type: TAG_FILTER, label: 'Tag:' },
{ type: TAG_FILTER, label: 'Version Tag:' },
{ type: NAME_FILTER, label: 'Name:' },
{ type: LABELS_FILTER, label: 'Labels:' }
]
Expand Down

0 comments on commit b68d61d

Please sign in to comment.