Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(profile): keep error status persistent until valid
Signed-off-by: John Molakvoæ <[email protected]>
  • Loading branch information
skjnldsv authored and backportbot[bot] committed Jun 1, 2025
commit b9c10e02509bcaf7c7a001d77092e0511b46a649
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ export default {
methods: {
async updateProperty(value) {
try {
this.hasError = false
const responseData = await savePrimaryAccountProperty(
this.name,
value,
Expand Down Expand Up @@ -182,7 +183,6 @@ export default {
} else {
handleError(error, errorMessage)
this.hasError = true
setTimeout(() => { this.hasError = false }, 2000)
}
},
},
Expand Down
Loading