Resolve a bug in LDAP page
-Issue was, while the Enable checkbox is disabled, click on the
save settings button, and then the page is getting
disabled.
Signed-off-by: Sandeepa Singh <sandeepa.singh@ibm.com>
Change-Id: Ib7cab16d99dab5296e7bafff1cdb936a4a535c6b
diff --git a/src/views/AccessControl/Ldap/Ldap.vue b/src/views/AccessControl/Ldap/Ldap.vue
index 25e50cb..78bb830 100644
--- a/src/views/AccessControl/Ldap/Ldap.vue
+++ b/src/views/AccessControl/Ldap/Ldap.vue
@@ -350,7 +350,9 @@
this.$store
.dispatch('ldap/getAccountSettings')
.finally(() => this.endLoader());
- this.$store.dispatch('sslCertificates/getCertificates');
+ this.$store
+ .dispatch('sslCertificates/getCertificates')
+ .finally(() => this.endLoader());
this.setFormValues();
},
methods: {
@@ -398,11 +400,13 @@
.dispatch('ldap/saveAccountSettings', data)
.then((success) => {
this.successToast(success);
- this.$v.form.$reset();
})
- .catch(({ message }) => this.errorToast(message))
+ .catch(({ message }) => {
+ this.errorToast(message);
+ })
.finally(() => {
this.form.bindPassword = '';
+ this.$v.form.$reset();
this.endLoader();
});
},