mirror of
https://github.com/samsonjs/spirit-tracker.git
synced 2026-04-27 15:07:43 +00:00
feat: V10 store page
This commit is contained in:
parent
925dc0f55d
commit
2902151c46
1 changed files with 3 additions and 2 deletions
|
|
@ -334,8 +334,9 @@ export async function renderStore($app, storeLabelRaw) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function formatDollars(p) {
|
function formatDollars(p) {
|
||||||
if (!Number.isFinite(p)) return "";
|
return `$${p}`;
|
||||||
return `$${Math.round(p)}`;
|
// if (!Number.isFinite(p)) return "";
|
||||||
|
// return `$${Math.round(p)}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
let selectedMaxPrice = clampAndRound(
|
let selectedMaxPrice = clampAndRound(
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue