Fix history table.

This commit is contained in:
yukirij 2024-10-17 14:51:55 -07:00
parent f3425cfac4
commit 2cea7f4b86

View File

@ -601,7 +601,7 @@ const SCENES = {
let table = document.createElement("table"); let table = document.createElement("table");
table.setAttribute("id", "content"); table.setAttribute("id", "content");
table.setAttribute("class", "list session"); table.setAttribute("class", "list session");
table.appendChild(UI.session_table(this.data)); table.appendChild(UI.session_table_history(this.data));
UI.maincontent(table); UI.maincontent(table);
history.pushState(null, "Dzura - History", "/history/"); history.pushState(null, "Dzura - History", "/history/");