From d2fdf623b2f4b8a198deaa4780b84ca736d6e3d5 Mon Sep 17 00:00:00 2001 From: lifeadventurer Date: Tue, 7 Nov 2023 13:29:10 +0800 Subject: [PATCH] fix: month display bug --- fortune_generator/fortune.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fortune_generator/fortune.js b/fortune_generator/fortune.js index 4534f5d..088a940 100644 --- a/fortune_generator/fortune.js +++ b/fortune_generator/fortune.js @@ -16,7 +16,7 @@ fetch("fortune.json") const textColor = ["#e74c3c", "#e74c3c", "#e74c3c", "#5eb95e", "#000000bf", "#000000bf", "#000000bf"]; const fortuneStatus = ["大吉", "中吉", "小吉", "中平", "凶", "小凶", "大凶"]; -const chineseMonth = ["一", "二", "三", "四", "五", "六", "七", "八", "九", "十一", "十二"]; +const chineseMonth = ["一", "二", "三", "四", "五", "六", "七", "八", "九", "十", "十一", "十二"]; const week = ['日', '一', '二', '三', '四', '五', '六']; const title = `今日運勢`;