diff --git a/frontend/src/lib/components/apps/components/display/table/AppTable.svelte b/frontend/src/lib/components/apps/components/display/table/AppTable.svelte index a7750a4333..e88e6a8a90 100644 --- a/frontend/src/lib/components/apps/components/display/table/AppTable.svelte +++ b/frontend/src/lib/components/apps/components/display/table/AppTable.svelte @@ -266,7 +266,7 @@ } } - function updateTable(resolvedConfig) { + function updateTable(resolvedConfig, searchValue) { if (resolvedConfig?.columnDefs) { $table.getAllLeafColumns().map((column) => { const columnConfig = resolvedConfig.columnDefs.find( @@ -285,7 +285,7 @@ } } - $: updateTable(resolvedConfig) + $: updateTable(resolvedConfig, searchValue) {#each Object.keys(components['tablecomponent'].initialData.configuration) as key (key)}