From aadf91afad79bb293b4a332c4e19f407b40b3b6a Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Sun, 21 Jan 2024 22:20:03 +0100 Subject: [PATCH] fix: fix initialization callback of AppDbexplorer --- .../apps/components/display/dbtable/AppDbExplorer.svelte | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/src/lib/components/apps/components/display/dbtable/AppDbExplorer.svelte b/frontend/src/lib/components/apps/components/display/dbtable/AppDbExplorer.svelte index 285e872e37..af64a9bd3e 100644 --- a/frontend/src/lib/components/apps/components/display/dbtable/AppDbExplorer.svelte +++ b/frontend/src/lib/components/apps/components/display/dbtable/AppDbExplorer.svelte @@ -33,6 +33,7 @@ import type RunnableComponent from '../../helpers/RunnableComponent.svelte' import InsertRowRunnable from './InsertRowRunnable.svelte' import DeleteRow from './DeleteRow.svelte' + import InitializeComponent from '../../helpers/InitializeComponent.svelte' export let id: string export let configuration: RichConfigurations @@ -393,6 +394,8 @@ resource={resolvedConfig?.type?.configuration?.postgresql?.resource ?? ''} /> + +