1
0
Fork 0
mirror of synced 2024-07-07 23:35:49 +12:00

Tidy up by using optional chaining

This commit is contained in:
Andrew Kingston 2020-09-17 14:19:14 +01:00
parent 1e099b9b5a
commit 1cba3f2f8e
2 changed files with 3 additions and 6 deletions

View file

@ -4,9 +4,8 @@
import { notifier } from "builderStore/store/notifications" import { notifier } from "builderStore/store/notifications"
import Flowchart from "./flowchart/FlowChart.svelte" import Flowchart from "./flowchart/FlowChart.svelte"
$: workflow = $: workflow = $workflowStore.selectedWorkflow?.workflow
$workflowStore.selectedWorkflow && $workflowStore.selectedWorkflow.workflow $: workflowLive = workflow?.live
$: workflowLive = workflow && workflow.live
$: instanceId = $backendUiStore.selectedDatabase._id $: instanceId = $backendUiStore.selectedDatabase._id
function onSelect(block) { function onSelect(block) {

View file

@ -8,9 +8,7 @@
const { open, close } = getContext("simple-modal") const { open, close } = getContext("simple-modal")
$: selectedWorkflowId = $: selectedWorkflowId = $workflowStore.selectedWorkflow?.workflow?._id
$workflowStore.selectedWorkflow &&
$workflowStore.selectedWorkflow.workflow._id
function newWorkflow() { function newWorkflow() {
open( open(