21 lines
518 B
Svelte
21 lines
518 B
Svelte
<script lang="ts">
|
|
import { getContext } from 'svelte'
|
|
import type { FlowEditorContext } from '../types'
|
|
import FlowModuleWrapper from './FlowModuleWrapper.svelte'
|
|
|
|
export let noEditor = false
|
|
|
|
const { flowStore } = getContext<FlowEditorContext>('FlowEditorContext')
|
|
</script>
|
|
|
|
{#if $flowStore.value.failure_module}
|
|
<FlowModuleWrapper
|
|
{noEditor}
|
|
bind:flowModule={$flowStore.value.failure_module}
|
|
on:delete={() => {
|
|
$flowStore.value.failure_module = undefined
|
|
}}
|
|
previousModule={undefined}
|
|
/>
|
|
{/if}
|