Fixing an issue with datasource validation restricting saving of configuration - #8465.
This commit is contained in:
parent
e44dd44fad
commit
cbd6ce7f32
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue