@@ -277,7 +278,7 @@ export default {
handleResponse({ email, status, errorMessage, error }) {
if (status === 'ok') {
- // Ensure that local initialEmail state reflects server state
+ // Ensure that local state reflects server state
this.initialEmail = email
this.showCheckmarkIcon = true
setTimeout(() => { this.showCheckmarkIcon = false }, 2000)
@@ -297,9 +298,9 @@ export default {
diff --git a/apps/settings/src/components/PersonalInfo/EmailSection/EmailSection.vue b/apps/settings/src/components/PersonalInfo/EmailSection/EmailSection.vue
index a78bae03ed7..52bca9a2f49 100644
--- a/apps/settings/src/components/PersonalInfo/EmailSection/EmailSection.vue
+++ b/apps/settings/src/components/PersonalInfo/EmailSection/EmailSection.vue
@@ -171,4 +171,5 @@ export default {
cursor: default;
}
}
+}
diff --git a/apps/settings/src/components/PersonalInfo/shared/AddButton.vue b/apps/settings/src/components/PersonalInfo/shared/AddButton.vue
index 32605c3fdcf..07fc5bbcdbd 100644
--- a/apps/settings/src/components/PersonalInfo/shared/AddButton.vue
+++ b/apps/settings/src/components/PersonalInfo/shared/AddButton.vue
@@ -22,7 +22,7 @@
@@ -38,12 +38,6 @@ export default {
default: true,
},
},
-
- methods: {
- onClick(e) {
- this.$emit('click', e)
- },
- },
}
diff --git a/apps/settings/src/components/PersonalInfo/shared/HeaderBar.vue b/apps/settings/src/components/PersonalInfo/shared/HeaderBar.vue
index ab5afe060c8..e4ff0846a07 100644
--- a/apps/settings/src/components/PersonalInfo/shared/HeaderBar.vue
+++ b/apps/settings/src/components/PersonalInfo/shared/HeaderBar.vue
@@ -68,7 +68,7 @@ export default {
},
isEditable: {
type: Boolean,
- required: true,
+ default: true,
},
isMultiValueSupported: {
type: Boolean,
@@ -76,7 +76,7 @@ export default {
},
isValidSection: {
type: Boolean,
- default: true,
+ default: false,
},
labelFor: {
type: String,