From e5f04a2c7daefde019414dc037d17cf3a79035c8 Mon Sep 17 00:00:00 2001 From: Corban-Lee Jones Date: Sun, 11 May 2025 18:36:08 +0100 Subject: [PATCH] fix: style table search broken due to searching on unsearchable columns --- src/client/src/ts/guild/styles.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/src/ts/guild/styles.ts b/src/client/src/ts/guild/styles.ts index 15d1e05..dc882eb 100644 --- a/src/client/src/ts/guild/styles.ts +++ b/src/client/src/ts/guild/styles.ts @@ -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;