1
0
Fork 0
mirror of synced 2024-06-26 18:10:51 +12:00

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 5dc6f6dfa0
commit 0d786426d5

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