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;