From bc62930fe97cf16adfec00ad5b2be928dedede39 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Thu, 12 Sep 2024 18:54:04 +0200 Subject: [PATCH] remove obsoelte flip on schemaform --- frontend/src/lib/components/SchemaForm.svelte | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/src/lib/components/SchemaForm.svelte b/frontend/src/lib/components/SchemaForm.svelte index b11e634635..2afae0d853 100644 --- a/frontend/src/lib/components/SchemaForm.svelte +++ b/frontend/src/lib/components/SchemaForm.svelte @@ -15,7 +15,6 @@ import LightweightArgInput from './LightweightArgInput.svelte' import { deepEqual } from 'fast-equals' import { dragHandleZone, type Options as DndOptions } from '@windmill-labs/svelte-dnd-action' - import { flip } from 'svelte/animate' export let schema: Schema | any export let schemaSkippedValues: string[] = [] @@ -152,7 +151,7 @@ {#if keys.length > 0} {#each fields as item, i (item.id)} {@const argName = item.value} -
+
{#if !schemaSkippedValues.includes(argName) && Object.keys(schema?.properties ?? {}).includes(argName)}