From 0a50ab284f2c76d38ea05ded64a0efc81e19bf55 Mon Sep 17 00:00:00 2001 From: Dean Date: Mon, 15 Jul 2024 11:12:26 +0100 Subject: [PATCH 1/2] Title text alignment was not being saved to the app metadata. --- .../[componentId]/_components/Navigation/index.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/builder/src/pages/builder/app/[application]/design/[screenId]/[componentId]/_components/Navigation/index.svelte b/packages/builder/src/pages/builder/app/[application]/design/[screenId]/[componentId]/_components/Navigation/index.svelte index a0e0f1d93a..7c8b03caca 100644 --- a/packages/builder/src/pages/builder/app/[application]/design/[screenId]/[componentId]/_components/Navigation/index.svelte +++ b/packages/builder/src/pages/builder/app/[application]/design/[screenId]/[componentId]/_components/Navigation/index.svelte @@ -124,7 +124,7 @@ nav.syncAppNavigation({ textAlign: align })} + onChange={align => update("textAlign", align)} value={$nav.textAlign} props={{ options: alignmentOptions, From ab679ac85dcaf7164b1178ca986369bff4123a8d Mon Sep 17 00:00:00 2001 From: Conor Webb <126772285+ConorWebb96@users.noreply.github.com> Date: Mon, 15 Jul 2024 14:01:08 +0100 Subject: [PATCH 2/2] Add the option to use bindable inputs in your confirmations (#14138) Co-authored-by: deanhannigan --- .../actions/DeleteRow.svelte | 32 ++++++++--- .../actions/DuplicateRow.svelte | 34 +++++++---- .../actions/ExecuteQuery.svelte | 56 +++++++++++-------- .../ButtonActionEditor/actions/SaveRow.svelte | 33 ++++++++--- 4 files changed, 106 insertions(+), 49 deletions(-) diff --git a/packages/builder/src/components/design/settings/controls/ButtonActionEditor/actions/DeleteRow.svelte b/packages/builder/src/components/design/settings/controls/ButtonActionEditor/actions/DeleteRow.svelte index fd3521d597..410e4bb56e 100644 --- a/packages/builder/src/components/design/settings/controls/ButtonActionEditor/actions/DeleteRow.svelte +++ b/packages/builder/src/components/design/settings/controls/ButtonActionEditor/actions/DeleteRow.svelte @@ -1,5 +1,5 @@