From e4d168a6b5ed8a110315ab09ee204a6649d2536a Mon Sep 17 00:00:00 2001 From: Hedhunta Date: Sun, 28 Jan 2024 15:26:48 -0500 Subject: [PATCH] Update time-slots-schedule-editor.js Change Day schedule from Thursday to Wednesday to Sunday to Saturday --- web/directives/time-slots-schedule-editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/directives/time-slots-schedule-editor.js b/web/directives/time-slots-schedule-editor.js index 90375f7..20e371f 100644 --- a/web/directives/time-slots-schedule-editor.js +++ b/web/directives/time-slots-schedule-editor.js @@ -2,7 +2,7 @@ module.exports = function ($timeout, dizquetv, getShowData ) { const DAY = 24*60*60*1000; const WEEK = 7 * DAY; - const WEEK_DAYS = [ "Thursday", "Friday", "Saturday", "Sunday", "Monday", "Tuesday", "Wednesday" ]; + const WEEK_DAYS = [ "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" ]; return { restrict: 'E',