1
0
Fork 0
mirror of synced 2024-07-05 06:20:55 +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 Flowchart from "./flowchart/FlowChart.svelte"
$: workflow =
$workflowStore.selectedWorkflow && $workflowStore.selectedWorkflow.workflow
$: workflowLive = workflow && workflow.live
$: workflow = $workflowStore.selectedWorkflow?.workflow
$: workflowLive = workflow?.live
$: instanceId = $backendUiStore.selectedDatabase._id
function onSelect(block) {

View file

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