Skip to content

Commit

Permalink
Removed "last updated by" sections from the UI. (opensearch-project#767)
Browse files Browse the repository at this point in the history
* Removed "last updated by" section from the UI as the SearchMonitor API can no longer return that info.

Signed-off-by: AWSHurneyt <[email protected]>

* Updated cypress workflow.

Signed-off-by: AWSHurneyt <[email protected]>

---------

Signed-off-by: AWSHurneyt <[email protected]>
(cherry picked from commit 1bea77f)
Signed-off-by: kohinoor98 <[email protected]>
  • Loading branch information
AWSHurneyt authored and kohinoor98 committed Nov 21, 2023
1 parent 5bca7e7 commit 3c2bcc7
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions public/pages/Monitors/containers/Monitors/utils/tableUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,20 @@ export const columns = [
</EuiLink>
),
},
{
field: 'enabled',
name: 'State',
sortable: false,
truncateText: false,
render: (enabled) => (enabled ? 'Enabled' : 'Disabled'),
},
{
field: 'item_type',
name: 'Type',
sortable: false,
truncateText: false,
render: (item_type) => getItemLevelType(item_type),
},
{
field: 'latestAlert',
name: 'Latest alert',
Expand Down

0 comments on commit 3c2bcc7

Please sign in to comment.