number-master

web application to practice korean numbers
git clone git://brookjeynes.dev/bjeynes/number-master.git
Log | Files | Refs | README | LICENSE

commit d9425ffcb8d56d028449c03870fe4309e4a67df9
parent 1b107833652c88c8a954d88ec83feeeb49cd0c7d
Author: brookjeynes <me@brookjeynes.dev>
Date:   Tue,  2 Jun 2026 17:11:32 +1000

fix: missing irregular for month 육월 -> 유월

Signed-off-by: brookjeynes <me@brookjeynes.dev>

Diffstat:
Msrc/store.js | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/store.js b/src/store.js @@ -142,6 +142,7 @@ window.Alpine.store("app", { // getMonth returns 0 for January let month = sinoStringFromNumber(this.date.getMonth() + 1); if (month === "십") month = "시"; + if (month === "육") month = "유"; const day = sinoStringFromNumber(this.date.getDate()); return `${year}년 ${month}월 ${day}일`;