From e3fa842b6db5170ce953778c14e07828daca4929 Mon Sep 17 00:00:00 2001 From: Aditya Sharma Date: Wed, 19 Apr 2023 12:41:28 +0530 Subject: [PATCH] Fixed: facility not changed from the settings page Due to typo with variable name, facility not being changed --- src/views/Settings.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/Settings.vue b/src/views/Settings.vue index af11af04c..c5df7e417 100644 --- a/src/views/Settings.vue +++ b/src/views/Settings.vue @@ -278,7 +278,7 @@ export default defineComponent({ // https://github.com/ionic-team/ionic-framework/pull/25858 if (this.userProfile && this.currentFacility?.facilityId !== event.detail.value) this.store.dispatch('user/setFacility', { - 'faciltyId': event.detail.value + 'facilityId': event.detail.value }); }, async changeTimeZone() {