Skip to content

Commit 73e2182

Browse files
committed
added all possible options to include WeekDay, WeekendDay and AllDays
1 parent 59d9ba8 commit 73e2182

File tree

1 file changed

+5
-2
lines changed
  • src/pages/email/resources/management/list-rooms

1 file changed

+5
-2
lines changed

src/pages/email/resources/management/list-rooms/edit.jsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,15 +165,18 @@ Line Islands Standard Time (UTC+14:00) Kiritimati Island`;
165165
}).filter(Boolean);
166166
};
167167

168-
// Work days options - just using the actual days
168+
// Work days options
169169
const workDaysOptions = [
170170
{ value: "Sunday", label: "Sunday" },
171171
{ value: "Monday", label: "Monday" },
172172
{ value: "Tuesday", label: "Tuesday" },
173173
{ value: "Wednesday", label: "Wednesday" },
174174
{ value: "Thursday", label: "Thursday" },
175175
{ value: "Friday", label: "Friday" },
176-
{ value: "Saturday", label: "Saturday" }
176+
{ value: "Saturday", label: "Saturday" },
177+
{ value: "WeekDay", label: "Weekdays (Monday-Friday)" },
178+
{ value: "WeekendDay", label: "Weekend (Saturday-Sunday)" },
179+
{ value: "AllDays", label: "All Days" }
177180
];
178181

179182
// Automation Processing Options

0 commit comments

Comments
 (0)