Merge pull request #55486 from nextcloud/fix/55003-allow-empty-mail-address

Allow to remove a website in the user profile
This commit is contained in:
Ferdinand Thiessen 2025-10-02 20:51:30 +02:00 committed by GitHub
commit 2ea05681ae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View file

@ -35,7 +35,7 @@ export default {
methods: {
onValidate(value) {
return validateUrl(value)
return validateUrl(value) || value === ''
},
},
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long