From b68d61daad043dc7279085ec79cb49b040fa362c Mon Sep 17 00:00:00 2001 From: Taras-Hlukhovetskyi <155433425+Taras-Hlukhovetskyi@users.noreply.github.com> Date: Fri, 12 Jan 2024 17:46:23 +0200 Subject: [PATCH] Fix [Feature store] uniformity of tag filter labels (#2184) --- .../FeatureStore/FeatureVectors/featureVectors.util.js | 2 +- src/components/FeatureStore/Features/features.util.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/FeatureStore/FeatureVectors/featureVectors.util.js b/src/components/FeatureStore/FeatureVectors/featureVectors.util.js index d4e5f0567..fbbc66645 100644 --- a/src/components/FeatureStore/FeatureVectors/featureVectors.util.js +++ b/src/components/FeatureStore/FeatureVectors/featureVectors.util.js @@ -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:' } ] diff --git a/src/components/FeatureStore/Features/features.util.js b/src/components/FeatureStore/Features/features.util.js index 222cd7c7e..84f7f5932 100644 --- a/src/components/FeatureStore/Features/features.util.js +++ b/src/components/FeatureStore/Features/features.util.js @@ -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:' } ]