Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/SmartComponents/Systems/SystemTable.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ describe('SystemsTable', () => {
{ label: 'Oracle DB', value: 'oracle_db' },
{ label: 'RHEL AI', value: 'rhel_ai' },
{ label: 'SAP', value: 'sap' },
{ label: 'Satellite', value: 'satellite' },
],
onChange: expect.any(Function),
placeholder: 'Filter by workload',
Expand Down
1 change: 1 addition & 0 deletions src/Utilities/SystemsHelpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export const workloadToSystemProfile = (workloads = []) => ({
...(workloads.includes('intersystems') && { intersystems: true }),
...(workloads.includes('oracle_db') && { oracle_db: true }),
...(workloads.includes('rhel_ai') && { rhel_ai: true }),
...(workloads.includes('satellite') && { satellite: true }),
});

export const buildFilterConfig = (filter, apply) => ({
Expand Down
1 change: 1 addition & 0 deletions src/Utilities/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,7 @@ export const workloadOptions = [
{ label: 'Oracle DB', value: 'oracle_db' },
{ label: 'RHEL AI', value: 'rhel_ai' },
{ label: 'SAP', value: 'sap' },
{ label: 'Satellite', value: 'satellite' },
];

export const staleSystems = [
Expand Down
Loading