From 6261a6b7ff5ef83a2319015e021e256428351e9a Mon Sep 17 00:00:00 2001 From: Andrew Kingston Date: Fri, 2 Dec 2022 10:20:49 +0000 Subject: [PATCH] Fix incorrect prop used in table block for title button click actions --- packages/client/src/components/app/blocks/TableBlock.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/client/src/components/app/blocks/TableBlock.svelte b/packages/client/src/components/app/blocks/TableBlock.svelte index 9df81635db..392ada138b 100644 --- a/packages/client/src/components/app/blocks/TableBlock.svelte +++ b/packages/client/src/components/app/blocks/TableBlock.svelte @@ -66,7 +66,7 @@ }, ] $: buttonClickActions = - clickBehaviour === "actions" || dataSource?.type !== "table" + titleButtonClickBehaviour === "actions" || dataSource?.type !== "table" ? onClickTitleButton : [ {