Merge pull request #11337 from Budibase/fix/binding-panel

Fix builder crash when editing formula bindings
This commit is contained in:
Andrew Kingston 2023-07-25 16:13:16 +01:00 committed by GitHub
commit e022d9a22b
1 changed files with 2 additions and 2 deletions

View File

@ -339,7 +339,7 @@
</Tab>
{/if}
<div class="drawer-actions">
{#if typeof drawerActions.hide === "function" && drawerActions.headless}
{#if typeof drawerActions?.hide === "function" && drawerActions?.headless}
<Button
secondary
quiet
@ -350,7 +350,7 @@
Cancel
</Button>
{/if}
{#if typeof bindingDrawerActions?.save === "function" && drawerActions.headless}
{#if typeof bindingDrawerActions?.save === "function" && drawerActions?.headless}
<Button
cta
disabled={!valid}