From 6805b17c85a466e0a06d2888d4ebd52378d2f3ac Mon Sep 17 00:00:00 2001 From: Bilal Catic Date: Thu, 8 Aug 2019 11:55:01 +0200 Subject: [PATCH] fix incident explanation --- constants/constants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/constants/constants.js b/constants/constants.js index 06f3e18..2bcdac9 100644 --- a/constants/constants.js +++ b/constants/constants.js @@ -88,7 +88,7 @@ const incidentTypeExplanations = {}; incidentTypeExplanations[incidentType.UNLOCKED_INCIDENT_RELATED_WITH_RESERVATION] = 'Door left unlocked'; incidentTypeExplanations[incidentType.UNLOCKED_INCIDENT_STANDALONE] = 'Door left unlocked'; incidentTypeExplanations[incidentType.UNSCHEDULED_INCIDENT_BEFORE_RESERVATION] = 'Room used before reservation started'; -incidentTypeExplanations[incidentType.UNSCHEDULED_INCIDENT_AFTER_RESERVATION] = 'Room used after reservation started'; +incidentTypeExplanations[incidentType.UNSCHEDULED_INCIDENT_AFTER_RESERVATION] = 'Room used after reservation ended'; incidentTypeExplanations[incidentType.UNSCHEDULED_INCIDENT_STANDALONE] = 'Room used without reservation'; incidentTypeExplanations[incidentType.BOOKING_MOVED_TO_ANOTHER_DAY] = 'Reservation moved to another day'; incidentTypeExplanations[incidentType.BOOKING_SHORTENED] = 'Reservation shortened';