mirror of
https://github.com/KoboldAI/KoboldAI-Client.git
synced 2025-06-05 21:59:24 +02:00
Fix story sort
This commit is contained in:
@@ -1319,13 +1319,13 @@ function popup_items(data) {
|
||||
});
|
||||
}(columnName));
|
||||
container.classList.add("table-header-container")
|
||||
container.style = 'overflow-x: hidden; grid-area: p${i};';
|
||||
container.style = `overflow-x: hidden; grid-area: p${i};`;
|
||||
|
||||
td.classList.add("table-header-label");
|
||||
td.textContent = columnName;
|
||||
|
||||
// TODO: Better unsorted icon
|
||||
icon.id = 'sort-icon-${columnName.toLowerCase().replaceAll(" ", "-")}';
|
||||
icon.id = `sort-icon-${columnName.toLowerCase().replaceAll(" ", "-")}`;
|
||||
icon.innerText = "filter_list";
|
||||
icon.classList.add("material-icons-outlined");
|
||||
icon.classList.add("table-header-sort-icon");
|
||||
|
Reference in New Issue
Block a user