Fixes
authorTheSaminator <TheSaminator@users.noreply.github.com>
Mon, 7 Feb 2022 18:13:42 +0000 (13:13 -0500)
committerTheSaminator <TheSaminator@users.noreply.github.com>
Mon, 7 Feb 2022 18:13:42 +0000 (13:13 -0500)
src/jvmMain/kotlin/starshipfights/info/views_user.kt
src/jvmMain/resources/static/init.js

index 2d0be5faf1bce97fb0a8042879e331cf0b5ccf2f..e5e95615605ac7c62315f0421e8217b224cc44c2 100644 (file)
@@ -119,7 +119,7 @@ suspend fun ApplicationCall.manageUserPage(): HTML.() -> Unit {
                        }
                }
                section {
-                       h1 { +"Other Active Sessions" }
+                       h1 { +"Other Sessions" }
                        table {
                                tr {
                                        th { +"User-Agent" }
index 3ea86f80ced2c5a9956ac3283a4120c3a0f64bd2..86cc4383876ead884516634fb3b98a8b4b256035 100644 (file)
@@ -69,6 +69,6 @@ window.addEventListener("load", function () {
        for (let moment of moments) {
                let date = new Date(Number(moment.innerHTML.trim()));
                moment.innerHTML = date.toLocaleString();
-               moment.attributes["style"] = "";
+               moment.style.display = "inline";
        }
 });