mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-11 00:06:06 +00:00
11 lines
331 B
Svelte
11 lines
331 B
Svelte
<script lang="ts">
|
|
import type { EditableSchemaWrapperProps } from './editable_schema_wrapper'
|
|
import EditableSchemaWrapper from './EditableSchemaWrapper.svelte'
|
|
|
|
let { schema: oldSchema, ...props }: EditableSchemaWrapperProps = $props()
|
|
|
|
let schema = $state(oldSchema)
|
|
</script>
|
|
|
|
<EditableSchemaWrapper {schema} {...props} />
|