mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[RAM] render the grid only if we have alerts (#142481)
This commit is contained in:
parent
25ba3c758f
commit
b3ebe13330
1 changed files with 1 additions and 1 deletions
|
@ -266,7 +266,7 @@ const AlertsTable: React.FunctionComponent<AlertsTableProps> = (props: AlertsTab
|
|||
/>
|
||||
)}
|
||||
</Suspense>
|
||||
{alertsCount >= 0 && (
|
||||
{alertsCount > 0 && (
|
||||
<EuiDataGrid
|
||||
aria-label="Alerts table"
|
||||
data-test-subj="alertsTable"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue