From 91f33ae9b22a4fb7edba4bc6899e97cbe5e586ff Mon Sep 17 00:00:00 2001 From: Donkie Date: Sat, 25 May 2024 21:06:36 +0200 Subject: [PATCH] Column filters now perform exact matches Resolves #367 --- client/src/components/column.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/components/column.tsx b/client/src/components/column.tsx index 8a194d9..7824df6 100644 --- a/client/src/components/column.tsx +++ b/client/src/components/column.tsx @@ -196,7 +196,7 @@ export function FilteredQueryColumn(props: FilteredQueryColu if (typeof item === "string") { return { text: item, - value: item, + value: '"' + item + '"', }; } return item; @@ -308,7 +308,7 @@ export function SpoolIconColumn(props: SpoolIconColumnProps< if (typeof item === "string") { return { text: item, - value: item, + value: '"' + item + '"', }; } return item;