* fix frontend

Signed-off-by: pyranota <pyra@duck.com>

* chore: update ee-repo-ref to 5c2a8854e7ff014063a69dd8f7829a935129c31e

This commit updates the EE repository reference after PR #370 was merged in windmill-ee-private.

Previous ee-repo-ref: 8c75fc5b1372a790dc74b374cd72f9caf51a4595

New ee-repo-ref: 5c2a8854e7ff014063a69dd8f7829a935129c31e

Automated by sync-ee-ref workflow.

---------

Signed-off-by: pyranota <pyra@duck.com>
Co-authored-by: windmill-internal-app[bot] <windmill-internal-app[bot]@users.noreply.github.com>
This commit is contained in:
Pyra
2025-12-23 14:47:03 +01:00
committed by GitHub
parent 9d698dabb4
commit 1f82e2d432
4 changed files with 5 additions and 6 deletions
+1 -1
View File
@@ -1 +1 @@
71d872d27de44227b82f75a9c0879d8428684880
5c2a8854e7ff014063a69dd8f7829a935129c31e
@@ -45,7 +45,7 @@
import ScriptEditor from './ScriptEditor.svelte'
import { Alert, Badge, Button, Drawer, SecondsInput, Tab, TabContent, Tabs } from './common'
import LanguageIcon from './common/languageIcons/LanguageIcon.svelte'
import type { SupportedLanguage } from '$lib/common'
import type { SupportedLanguage, Schema } from '$lib/common'
import Tooltip from './Tooltip.svelte'
import DrawerContent from './common/drawer/DrawerContent.svelte'
import ToggleButtonGroup from '$lib/components/common/toggleButton-v2/ToggleButtonGroup.svelte'
@@ -1384,7 +1384,7 @@
bind:debounce_args_to_accumulate={script.debounce_args_to_accumulate}
bind:max_total_debouncing_time={script.max_total_debouncing_time}
bind:max_total_debounces_amount={script.max_total_debounces_amount}
schema={script.schema}
schema={script.schema as Schema}
placeholder={`$workspace/script/${script.path}-$args[foo]`}
/>
@@ -480,7 +480,7 @@
bind:debounce_args_to_accumulate={flowStore.val.value.debounce_args_to_accumulate}
bind:max_total_debouncing_time={flowStore.val.value.max_total_debouncing_time}
bind:max_total_debounces_amount={flowStore.val.value.max_total_debounces_amount}
schema={flowStore.val.schema}
schema={asSchema(flowStore.val.schema)}
placeholder={`$workspace/flow/${$pathStore}-$args[foo]`}
/>
{/if}
@@ -26,8 +26,7 @@
ListFilterPlus,
Play,
ShieldQuestion,
X,
Layers
X
} from 'lucide-svelte'
import { createEventDispatcher } from 'svelte'
import TimeAgo from '../TimeAgo.svelte'