mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-12 00:06:14 +00:00
* Refactor flow UI/UX + added fork and create script from inline script * Prevent infinite loop when remove steps * Fix forking a script from the Hub * Fix viewing code of a script from the Hub * Fix PR comments * Fix code highlight * Fix path * Find next available path * Fix copy first step schema
12 lines
271 B
Svelte
12 lines
271 B
Svelte
<script lang="ts">
|
|
import { copyFirstStepSchema, isCopyFirstStepSchemaDisabled } from './flowStore'
|
|
</script>
|
|
|
|
<button
|
|
class="default-secondary-button-v2"
|
|
disabled={$isCopyFirstStepSchemaDisabled}
|
|
on:click={copyFirstStepSchema}
|
|
>
|
|
Copy from step 1's schema
|
|
</button>
|