回答編集履歴
1
case文の条件の修正
test
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
css_class =
|
8
8
|
|
9
|
-
case day.worked_on.wday
|
9
|
+
case %w{日 月 火 水 木 金 土}[day.worked_on.wday]
|
10
10
|
|
11
11
|
when '土'
|
12
12
|
|