remove breaking prop (#7086)

* remove breaking prop

* cleaning

* fix weirdbroken multiselect

---------

Co-authored-by: Diego Imbert <diego@windmill.dev>
This commit is contained in:
centdix
2025-11-07 18:49:42 +01:00
committed by GitHub
parent b07c35fe1c
commit e1fc963990
3 changed files with 2 additions and 7 deletions
@@ -173,7 +173,6 @@
bind:value={tool.value.include_tools}
items={toolOptions}
placeholder="Choose tools to include..."
disablePortal
/>
</Label>
</div>
@@ -183,7 +182,6 @@
bind:value={tool.value.exclude_tools}
items={toolOptions}
placeholder="Choose tools to exclude..."
disablePortal
/>
</Label>
</div>
@@ -106,7 +106,7 @@
<div
bind:this={wrapperEl}
class={twMerge(
'flex items-center flex-wrap',
'flex items-center flex-wrap relative',
inputBaseClass,
inputSizeClasses[size],
inputBorderClass({ forceFocus: open && !disabled }),
@@ -169,10 +169,7 @@
)}
style="height: {uiState.visible ? dropdownPos.height : 0}px;"
>
<div
bind:this={listEl}
class="flex flex-col max-h-64 rounded-md overflow-clip bg-surface-tertiary"
>
<div bind:this={listEl} class="flex flex-col max-h-64 rounded-md bg-surface-tertiary">
{@render header?.()}
{#if processedItems?.length === 0}
<div class="py-8 px-4 text-center text-primary text-xs">{noItemsMsg}</div>