mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
remove breaking prop (#7086)
* remove breaking prop * cleaning * fix weirdbroken multiselect --------- Co-authored-by: Diego Imbert <diego@windmill.dev>
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user