mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Fix bug causing unwanted text to be rendered. (#31334)
This commit is contained in:
parent
c95ce96d0a
commit
38f7dca087
1 changed files with 1 additions and 1 deletions
|
@ -52,6 +52,6 @@ export const EmptyState = ({ children, count }: EmptyStateProps) => (
|
|||
}
|
||||
/>
|
||||
)}
|
||||
{count && count > 0 && children}
|
||||
{!!count && count > 0 && children}
|
||||
</Fragment>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue