From 3a38d2b99488686ebeb8ac3a27d557bd480eb81d Mon Sep 17 00:00:00 2001 From: jessrey-asterisk Date: Wed, 13 Nov 2024 18:53:18 +0800 Subject: [PATCH] prettier changes --- client/src/utils/fuzzyFilter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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