diff --git a/client/src/utils/fuzzyFilter.ts b/client/src/utils/fuzzyFilter.ts index 0140ac95..1f3eb276 100644 --- a/client/src/utils/fuzzyFilter.ts +++ b/client/src/utils/fuzzyFilter.ts @@ -5,7 +5,7 @@ export const fuzzyFilter: FilterFn = (row, columnId, value, addMeta) => { try { // Get the value for the 'projects' column const rowValue = row.getValue(columnId) - + // If the value in the column is an array (i.e., 'projects' is an array of project names) // Join the array into a single string for fuzzy matching const searchValue = Array.isArray(rowValue) ? rowValue.join(' ') : rowValue