@fluid-topics/ft-filterable-table 1.1.48 → 1.1.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -130,7 +130,7 @@ class FtFilterableTable extends FtLitElement {
|
|
|
130
130
|
renderColumnSort(column, index) {
|
|
131
131
|
var _a;
|
|
132
132
|
const isSorted = this.currentSort && this.currentSort.column === index;
|
|
133
|
-
const sortIcon = isSorted ? (this.currentSort.order === "asc" ? "
|
|
133
|
+
const sortIcon = isSorted ? (this.currentSort.order === "asc" ? "expand_less" : "expand_more") : "unfold_more";
|
|
134
134
|
const sort = () => {
|
|
135
135
|
var _a;
|
|
136
136
|
this.currentSort = {
|