Skip to content

Commit

Permalink
change unapplied cateogry filter to empty instead of x (#858) (#860)
Browse files Browse the repository at this point in the history
(cherry picked from commit d1f5d3b)

Signed-off-by: Derek Ho <dxho@amazon.com>
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
1 parent b820cb2 commit 7eef82a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export function AvailableIntegrationOverviewPage(props: AvailableIntegrationOver
<div className="ouiFilterSelect__items">
{items.map((item, index) => (
<EuiFilterSelectItem
checked={item.checked ? 'on' : 'off'}
checked={item.checked ? 'on' : undefined}
key={index}
onClick={() => updateItem(index)}
>
Expand Down

0 comments on commit 7eef82a

Please sign in to comment.