Browse Source

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

Allow to remove a website in the user profile
chore/karma-mimetype
Ferdinand Thiessen 4 days ago
committed by GitHub
parent
commit
2ea05681ae
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      apps/settings/src/components/PersonalInfo/WebsiteSection.vue
  2. 4
      dist/settings-vue-settings-personal-info.js
  3. 2
      dist/settings-vue-settings-personal-info.js.map

2
apps/settings/src/components/PersonalInfo/WebsiteSection.vue

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

4
dist/settings-vue-settings-personal-info.js
File diff suppressed because it is too large
View File

2
dist/settings-vue-settings-personal-info.js.map
File diff suppressed because it is too large
View File

Loading…
Cancel
Save