返回提交历史
Modified
static/webui/script.js
+1
-1
XFEstudio/XFESpaceNinjaServer
fix(webui): show 0 rerolls instead NaN in Rivens (#1385)
Co-authored-by: Sainan <sainan@calamity.inc> Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/1385 Co-authored-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com> Co-committed-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com>
f34e1615
代码差异
1 个文件
+1
-1
@@ -465,7 +465,7 @@ function updateInventory() {
465
465
" <span title='" +
466
466
loc("code_rerollsNumber") +
467
467
"'>⟳ " +
468
parseInt(fingerprint.rerolls) +
468
(fingerprint.rerolls ?? 0) +
469
469
"</span>";
470
470
tr.appendChild(td);
471
471
}