From e217af7c04d4bf1e7b555ea80a3307a98679f5b6 Mon Sep 17 00:00:00 2001 From: ATAKAN TEPE Date: Wed, 18 Oct 2023 04:52:17 +0300 Subject: [PATCH] Treetable TW sortable column icon issue fixed --- components/lib/passthrough/tailwind/index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/lib/passthrough/tailwind/index.js b/components/lib/passthrough/tailwind/index.js index d1e2ff086..a48d97cba 100644 --- a/components/lib/passthrough/tailwind/index.js +++ b/components/lib/passthrough/tailwind/index.js @@ -3650,6 +3650,9 @@ export default { 'dark:text-white/70' //Dark Mode ] }), + sort: { + class: 'inline-block align-middle' + }, sorticon: ({ context }) => ({ class: ['ml-2', context.sorted ? 'text-blue-700 dark:text-white/80' : 'text-slate-700 dark:text-white/70'] }),