mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
fix: filter not being triggered
This commit is contained in:
@@ -69,7 +69,15 @@
|
||||
});
|
||||
}}>
|
||||
<Layout.Stack direction="row" gap="s">
|
||||
<Selector.Checkbox checked={option.checked} size="s" />
|
||||
<Selector.Checkbox
|
||||
checked={option.checked}
|
||||
on:click={() => {
|
||||
option.checked = !option.checked;
|
||||
dispatch('add', {
|
||||
value: option.checked
|
||||
});
|
||||
}}
|
||||
size="s" />
|
||||
{capitalize(option.label)}
|
||||
</Layout.Stack>
|
||||
</ActionMenu.Item.Button>
|
||||
|
||||
Reference in New Issue
Block a user