From 2cea7f4b8621fe79b1c3e17df67ee9639c2d4c6d Mon Sep 17 00:00:00 2001 From: yukirij Date: Thu, 17 Oct 2024 14:51:55 -0700 Subject: [PATCH] Fix history table. --- www/js/scene.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/js/scene.js b/www/js/scene.js index 8f1b3ea..766eace 100644 --- a/www/js/scene.js +++ b/www/js/scene.js @@ -601,7 +601,7 @@ const SCENES = { let table = document.createElement("table"); table.setAttribute("id", "content"); table.setAttribute("class", "list session"); - table.appendChild(UI.session_table(this.data)); + table.appendChild(UI.session_table_history(this.data)); UI.maincontent(table); history.pushState(null, "Dzura - History", "/history/");