Skip to content

Commit

Permalink
Some lint and text snapshot fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ronlavi2412 committed Dec 28, 2023
1 parent e1118f2 commit 42d224c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ exports[`InsightsTable rendering render with Props 1`] = `
aria-label="Recommendations Table"
borders={true}
canCollapseAll={false}
canSelectAll={true}
canSelectAll={false}
canSortFavorites={true}
cells={
Array [
Expand Down Expand Up @@ -101,6 +101,7 @@ exports[`InsightsTable rendering render with Props 1`] = `
</Table>
<TableEmptyState
error={null}
rowsLength={0}
status="RESOLVED"
/>
<Pagination
Expand Down
7 changes: 2 additions & 5 deletions webpack/common/table/EmptyState.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,9 @@ const TableEmptyState = ({ status, error, rowsLength }) => {
if (rowsLength > 0) return null;
return (
<EmptyState variant={EmptyStateVariant.small}>
<EmptyStateIcon
variant="container"
component={CheckIcon}
/>
<EmptyStateIcon variant="container" component={CheckIcon} />
<Title headingLevel="h2" size="lg">
{__('There are no remmediations for your hosts')}
{__('There are no recommendations for your hosts')}
</Title>
</EmptyState>
);
Expand Down

0 comments on commit 42d224c

Please sign in to comment.