From 5f8ca696c1414c28ee960b8c8180c9d9629344e7 Mon Sep 17 00:00:00 2001 From: MattMo Date: Fri, 14 Jul 2023 14:10:02 -0700 Subject: [PATCH] Sortable columns now show an up/down arrow if no sort is applied and now use the sort icons if sorting is applied. --- data-table.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data-table.js b/data-table.js index e60445c..bcb53a2 100644 --- a/data-table.js +++ b/data-table.js @@ -351,7 +351,7 @@ class DataTable extends IgniteElement { column.table = this; return new th().class("text-nowrap").class(column.sortable, sortable => sortable ? "cursor-pointer" : null).attribute("scope", "col").child( - new i().show([column.sortable, column.sort], (sortable, sort) => sortable && sort).class("me-2").class(column.sort, sort => sort ? (sort == "asc" ? "fa-solid fa-angle-up" : "fa-solid fa-angle-down") : null), + new i().show([column.sortable, column.sort], (sortable, sort) => sortable || sort).class("me-2").class(column.sort, sort => sort ? (sort == "asc" ? "fa-solid fa-sort-up" : "fa-solid fa-sort-down") : "fa-solid fa-sort"), column.name ).onClick(() => { if (column.sortable) {