From e4d168a6b5ed8a110315ab09ee204a6649d2536a Mon Sep 17 00:00:00 2001 From: Hedhunta Date: Sun, 28 Jan 2024 15:26:48 -0500 Subject: [PATCH 1/2] 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', From 95b9e44ad8f2179dc45418baea6ec20e5445f311 Mon Sep 17 00:00:00 2001 From: Hedhunta Date: Sun, 28 Jan 2024 15:27:51 -0500 Subject: [PATCH 2/2] Update time-slots-time-editor.js Change week from Thurs-Weds to Sun-Sat --- web/directives/time-slots-time-editor.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/web/directives/time-slots-time-editor.js b/web/directives/time-slots-time-editor.js index 7e3b941..c6cb6c6 100644 --- a/web/directives/time-slots-time-editor.js +++ b/web/directives/time-slots-time-editor.js @@ -16,13 +16,13 @@ module.exports = function ($timeout) { scope.m = 0; scope.s = 0; scope.weekDayOptions = [ - { id: 0, description : "Thursday" } , - { id: 1, description : "Friday" } , - { id: 2, description : "Saturday" } , - { id: 3, description : "Sunday" } , - { id: 4, description : "Monday" } , - { id: 5, description : "Tuesday" } , - { id: 6, description : "Wednesday" } , + { id: 0, description : "Sunday" } , + { id: 1, description : "Monday" } , + { id: 2, description : "Tuesday" } , + { id: 3, description : "Wednesday" } , + { id: 4, description : "Thursday" } , + { id: 5, description : "Friday" } , + { id: 6, description : "Saturday" } , ]; scope.hourOptions = [];