XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

XFESpaceNinjaServer

A simple server for a small space ninja game

公开
关注 0 Fork 0 Star 0
返回提交历史

XFEstudio/XFESpaceNinjaServer

fix(webui): delete prompt showing name twice

25a09997
Sainan <sainan@calamity.inc>
提交于

代码差异

1 个文件 +1 -1
Modified static/webui/script.js +1 -1
@@ -74,7 +74,7 @@ function deleteAccount() {
74 74 if (
75 75 window.confirm(
76 76 "Are you sure you want to delete your account " +
77 $(".displayname").text() +
77 document.querySelector(".displayname").textContent +
78 78 " (" +
79 79 localStorage.getItem("email") +
80 80 ")? This action cannot be undone."