Skip to content

Commit

Permalink
adjust empty state variant
Browse files Browse the repository at this point in the history
  • Loading branch information
ronlavi2412 committed Dec 28, 2023
1 parent 42d224c commit 60c941e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webpack/common/table/EmptyState.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const TableEmptyState = ({ status, error, rowsLength }) => {
case STATUS.RESOLVED:
if (rowsLength > 0) return null;
return (
<EmptyState variant={EmptyStateVariant.small}>
<EmptyState variant={EmptyStateVariant.large}>
<EmptyStateIcon variant="container" component={CheckIcon} />
<Title headingLevel="h2" size="lg">
{__('There are no recommendations for your hosts')}
Expand Down

0 comments on commit 60c941e

Please sign in to comment.