nit check

This commit is contained in:
Ruben Fiszel
2025-10-28 17:52:04 +00:00
parent bfbeb468f1
commit 4e1409683e
2 changed files with 2 additions and 9 deletions
@@ -10,15 +10,9 @@
placement?: 'bottom-end' | 'top-end'
variant?: 'default' | 'accent'
disabled?: boolean
showWorkspaceRestriction?: boolean
}
let {
placement = 'bottom-end',
variant = 'default',
disabled = false,
showWorkspaceRestriction = false
}: Props = $props()
let { placement = 'bottom-end', variant = 'default', disabled = false }: Props = $props()
</script>
<Popover
@@ -40,6 +34,6 @@
</Button>
{/snippet}
{#snippet content()}
<AssignableTagsInner {showWorkspaceRestriction} on:refresh />
<AssignableTagsInner on:refresh />
{/snippet}
</Popover>
@@ -329,7 +329,6 @@
<div class="flex flex-row-reverse w-full pb-2 items-center gap-4">
<div>
<AssignableTags
showWorkspaceRestriction
on:refresh={() => {
loadCustomTags()
}}