Fixing an issue with datasource validation restricting saving of configuration - #8465.

This commit is contained in:
mike12345567 2022-11-01 16:30:20 +00:00
parent e44dd44fad
commit cbd6ce7f32
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@
// run the validation whenever the config changes
$: validation.check(config)
// dispatch the validation result
$: dispatch("valid", $validation.valid)
$: dispatch("valid", Object.keys($validation.errors).length === 0)
let addButton