fix(webui): show 0 rerolls instead NaN in Rivens (#1385)
Co-authored-by: Sainan <sainan@calamity.inc> Reviewed-on: #1385 Co-authored-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com> Co-committed-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com>
This commit is contained in:
parent
c82cad7b02
commit
f34e1615e2
@ -465,7 +465,7 @@ function updateInventory() {
|
|||||||
" <span title='" +
|
" <span title='" +
|
||||||
loc("code_rerollsNumber") +
|
loc("code_rerollsNumber") +
|
||||||
"'>⟳ " +
|
"'>⟳ " +
|
||||||
parseInt(fingerprint.rerolls) +
|
(fingerprint.rerolls ?? 0) +
|
||||||
"</span>";
|
"</span>";
|
||||||
tr.appendChild(td);
|
tr.appendChild(td);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user