From f56f258dd1751f4aed9909b912dc4acc39f71bef Mon Sep 17 00:00:00 2001 From: Henry Jordan Date: Tue, 16 Nov 2021 21:18:42 +0000 Subject: [PATCH] PMCORE-3526 --- .../src/components/personalInformation.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/workflow/engine/methods/userPersonalInformation/src/components/personalInformation.vue b/workflow/engine/methods/userPersonalInformation/src/components/personalInformation.vue index a1c1c05c1..533c14188 100644 --- a/workflow/engine/methods/userPersonalInformation/src/components/personalInformation.vue +++ b/workflow/engine/methods/userPersonalInformation/src/components/personalInformation.vue @@ -467,11 +467,11 @@ mounted() { this.$nextTick(function () { let promise = null; + this.getTimeZoneList(); if ("USR_UID" in window && window.USR_UID !== "") { this.editing = true; promise = this.load(); - promise.then(response => { - response; + promise.then(() => { this.loadServices(); }); } else { @@ -851,7 +851,6 @@ loadServices() { this.getCountryList(); this.getAvailableCalendars(); - this.getTimeZoneList(); this.getLanguagesList(); this.getDefaultMainMenuOptionList(); this.getDefaultCasesMenuOptionList();