Skip to content

Commit

Permalink
fix(bulk ops): clarify no filter applied text box for bulk deletes an…
Browse files Browse the repository at this point in the history
…d updates (#5815)

* none text added

* test linting
  • Loading branch information
betsybutton authored May 16, 2024
1 parent db1d63c commit ea60033
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/compass-crud/src/components/readonly-filter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ export function ReadonlyFilter({
data-testid="readonly-filter"
className={readOnlyFilterStyles}
>
<code className={codeStyles}>{filterQuery}</code>
<code className={codeStyles}>
{filterQuery === '{}' ? 'None' : filterQuery}
</code>
</KeylineCard>
</>
);
Expand Down

0 comments on commit ea60033

Please sign in to comment.