fix: style table search broken due to searching on unsearchable columns
Some checks failed
Build / build (push) Failing after 36s

This commit is contained in:
Corban-Lee Jones 2025-05-11 18:36:08 +01:00
parent dc0a4a9be0
commit e5f04a2c7d

View File

@ -83,7 +83,7 @@ const columnDefs: ConfigColumnDefs[] = [
target: 3,
data: "title_mutator",
orderable: true,
searchable: true,
searchable: false,
className: "size-px whitespace-nowrap",
render: (data: string, type: string) => {
if (type !== "display") return data;
@ -102,7 +102,7 @@ const columnDefs: ConfigColumnDefs[] = [
target: 4,
data: "description_mutator",
orderable: true,
searchable: true,
searchable: false,
className: "size-px whitespace-nowrap",
render: (data: string, type: string) => {
if (type !== "display") return data;