Skip to content

Commit

Permalink
prettier changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jessrey619 committed Nov 13, 2024
1 parent 91b4755 commit 3a38d2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/utils/fuzzyFilter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const fuzzyFilter: FilterFn<any> = (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
Expand Down

0 comments on commit 3a38d2b

Please sign in to comment.