fix (settings): Allow for empty websites in the profile to remove the entry completely

Signed-off-by: Christian Wolf <github@christianwolf.email>
This commit is contained in:
Christian Wolf 2025-10-02 14:21:13 +02:00
parent 4ace101b05
commit d40e58db00
No known key found for this signature in database
GPG key ID: AB6DF7467D2738F2
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