fix: include timezone offset in all displayed timestamps
All checks were successful
check / check (push) Successful in 21s

All isoDate() functions now output proper ISO 8601 format with timezone
offset (e.g. 2026-02-28T15:30:00-08:00) instead of bare datetime strings.
Also uses 'T' separator per ISO 8601.

closes #116
This commit is contained in:
user
2026-02-28 16:14:56 -08:00
parent 834228b572
commit a72359432b
6 changed files with 85 additions and 6 deletions

View File

@@ -241,6 +241,12 @@ function init(ctx) {
}
});
$("settings-utc-timestamps").checked = state.utcTimestamps;
$("settings-utc-timestamps").addEventListener("change", async () => {
state.utcTimestamps = $("settings-utc-timestamps").checked;
await saveState();
});
$("btn-main-add-wallet").addEventListener("click", ctx.showAddWalletView);
$("btn-settings-add-token").addEventListener(