mirror of
https://github.com/MadeBaruna/paimon-moe.git
synced 2025-03-13 11:18:28 +01:00
Fix bug where isSunday was always false
This commit is contained in:
parent
554f02bfc1
commit
882177fb82
1 changed files with 1 additions and 1 deletions
|
@ -29,8 +29,8 @@
|
|||
let columnCount = 1;
|
||||
let numberFormat = Intl.NumberFormat();
|
||||
let adding = false;
|
||||
let isSunday = false;
|
||||
let today = getCurrentDay();
|
||||
let isSunday = today == "sunday";
|
||||
let summary = {};
|
||||
let todayOnlyItems = {};
|
||||
let resin = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue