mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 00:02:19 +00:00
feat(frontend): fix table when seaching with hidden columns (#2549)
This commit is contained in:
@@ -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)
|
||||
</script>
|
||||
|
||||
{#each Object.keys(components['tablecomponent'].initialData.configuration) as key (key)}
|
||||
|
||||
Reference in New Issue
Block a user