Skip to content

Commit fee0fe2

Browse files
Fix:content fixes for feature store usability (opendatahub-io#6101)
* fix:content fixes for feature store usability * fix:review changes
1 parent 499ab40 commit fee0fe2

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

packages/feature-store/src/components/IntegrationInstructionsPopover.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const IntegrationInstructionsPopover: React.FC<IntegrationInstructionsPopoverPro
2121
onClick={onFooterClick}
2222
data-testid="integration-instructions-footer-link"
2323
>
24-
Go to <strong>Data science projects</strong>
24+
Go to <strong>Projects</strong>
2525
</Link>
2626
</StackItem>
2727
</Stack>
@@ -35,8 +35,8 @@ const IntegrationInstructionsPopover: React.FC<IntegrationInstructionsPopoverPro
3535
permission to access the feature store.
3636
<br />
3737
<br />
38-
In a project with the required permission, create or edit a workbench and select the
39-
desired feature store in the <strong>Connected feature stores</strong> field.
38+
In a compatible project, create or edit a workbench and select the desired feature store
39+
in the <strong>Feature stores</strong> field.
4040
</p>
4141
</StackItem>
4242
<StackItem>{footerContent}</StackItem>

packages/feature-store/src/screens/dataSets/DataSetDetails/DataSetDetailsView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ const DataSetDetailsView: React.FC<DataSetDetailsViewProps> = ({ dataSet }) => {
247247
<FeatureStoreCodeBlock
248248
content={dataSet.featureDefinition}
249249
id={dataSet.spec.name}
250-
featureStoreType="data set"
250+
featureStoreType="dataset"
251251
/>
252252
) : (
253253
<Content component="p" className={text.textColorDisabled}>

packages/feature-store/src/screens/dataSets/FeatureStoreDataSets.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import React from 'react';
22
import { EmptyStateBody, EmptyStateVariant, EmptyState } from '@patternfly/react-core';
33
import { SearchIcon } from '@patternfly/react-icons';
4+
// eslint-disable-next-line @odh-dashboard/no-restricted-imports
45
import ApplicationsPage from '@odh-dashboard/internal/pages/ApplicationsPage';
56
import FeatureStoreDataSetsListView from './DataSetTable/FeatureStoreDatasetListView';
67
import FeatureStoreProjectSelectorNavigator from '../components/FeatureStoreProjectSelectorNavigator';
@@ -10,10 +11,10 @@ import { featureStoreRoute } from '../../routes';
1011
import useFeatureStoreDataSets from '../../apiHooks/useFeatureStoreDataSets';
1112
import FeatureStoreObjectIcon from '../../components/FeatureStoreObjectIcon';
1213
import FeatureStoreAccessDenied from '../../components/FeatureStoreAccessDenied';
14+
import { getFeatureStoreObjectDescription } from '../../utils';
15+
import { FeatureStoreObject } from '../../const';
1316

1417
const title = 'Datasets';
15-
const description =
16-
'View and manage datasets created from feature services. Datasets are point-in-time-correct snapshots of feature services,data and are used for training, or validation, and analysis.';
1718

1819
const FeatureStoreDataSets = (): React.ReactElement => {
1920
const { currentProject } = useFeatureStoreProject();
@@ -57,7 +58,7 @@ const FeatureStoreDataSets = (): React.ReactElement => {
5758
}
5859
/>
5960
}
60-
description={description}
61+
description={getFeatureStoreObjectDescription(FeatureStoreObject.DATA_SETS)}
6162
loadError={dataSetsLoadError}
6263
loaded={dataSetsLoaded}
6364
headerContent={

packages/feature-store/src/screens/featureServices/FeatureServices.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import FeatureStoreAccessDenied from '../../components/FeatureStoreAccessDenied'
1414

1515
const title = 'Feature services';
1616
const description =
17-
"Select a feature store to view and manage its feature services. Feature services groups features from across one or more Feature views to serve a specific model's needs for training, inference, or GenAI applications like RAG. Feature service acts as a managed API for a model, ensuring features are served consistently.";
17+
'Select a feature store to view its feature services. Feature services are groups of related features from one or more feature views that are designed to be retrieved together for model training, online inference, or GenAI applications like RAG.';
1818

1919
const FeatureServices = (): React.ReactElement => {
2020
const { currentProject } = useFeatureStoreProject();

0 commit comments

Comments
 (0)