From 0bd59dc0f8b8ce81cd38b296fca79a47159b9dac Mon Sep 17 00:00:00 2001 From: "SPRINX0\\prochazka" Date: Mon, 17 Feb 2025 11:29:31 +0100 Subject: [PATCH] filter by column data type fix --- packages/web/src/widgets/SqlObjectList.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web/src/widgets/SqlObjectList.svelte b/packages/web/src/widgets/SqlObjectList.svelte index 2c208305a..e15d46732 100644 --- a/packages/web/src/widgets/SqlObjectList.svelte +++ b/packages/web/src/widgets/SqlObjectList.svelte @@ -138,7 +138,7 @@ res.push({ label: 'Table/view/procedure name', switchValue: 'pureName' }); res.push({ label: 'Schema', switchValue: 'schemaName' }); res.push({ label: 'Column name', switchValue: 'columnName' }); - res.push({ label: 'Column data type', switchValue: 'columnType' }); + res.push({ label: 'Column data type', switchValue: 'columnDataType' }); res.push({ label: 'Table comment', switchValue: 'tableComment' }); res.push({ label: 'Column comment', switchValue: 'columnComment' }); res.push({ label: 'View/procedure/trigger text', switchValue: 'sqlObjectText' });