Skip to content

Commit

Permalink
change unapplied cateogry filter to empty instead of x
Browse files Browse the repository at this point in the history
Signed-off-by: Derek Ho <dxho@amazon.com>
  • Loading branch information
derek-ho committed Aug 8, 2023
1 parent ad7aa65 commit dc7a5e5
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 dc7a5e5

Please sign in to comment.