From ea743b580615848fbe23374d8af7c6cc7eacee99 Mon Sep 17 00:00:00 2001 From: Aditya Hegde Date: Fri, 31 Jul 2026 17:20:58 +0530 Subject: [PATCH] fix: table sort component having white background --- web-common/src/components/table-toolbar/TableToolbarSort.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web-common/src/components/table-toolbar/TableToolbarSort.svelte b/web-common/src/components/table-toolbar/TableToolbarSort.svelte index 3845628612c..4547386b1f1 100644 --- a/web-common/src/components/table-toolbar/TableToolbarSort.svelte +++ b/web-common/src/components/table-toolbar/TableToolbarSort.svelte @@ -36,7 +36,7 @@ let sizeClass = $derived(ClassForSize[size]); let outlineClass = $derived( - noOutline ? "" : "border rounded-[2px] shadow-xs bg-white", + noOutline ? "" : "border rounded-[2px] shadow-xs", );