-
Notifications
You must be signed in to change notification settings - Fork 367
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upcoming: [DI-22217] - Review changes: Added a TableRowLabelMap for t…
…he TableHead Row, Replaced referencing colors directly and used theme styling for colors
- Loading branch information
1 parent
07fb774
commit 0e44318
Showing
3 changed files
with
45 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
packages/manager/src/features/CloudPulse/Alerts/AlertsListing/constants.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
export const AlertListingTableLabelMap = [ | ||
{ | ||
colName: 'AlertName', | ||
label: 'alertName', | ||
}, | ||
{ | ||
colName: 'Service', | ||
label: 'service', | ||
}, | ||
{ | ||
colName: 'Status', | ||
label: 'status', | ||
}, | ||
{ | ||
colName: 'Last Modified', | ||
label: 'lastModified', | ||
}, | ||
{ | ||
colName: 'Created By', | ||
label: 'createdBy', | ||
}, | ||
]; |