Merge pull request #4838 from mslourens/data_source_modal_error_handling

show correct error and keep modal open
This commit is contained in:
Martin McKeaveney 2022-03-08 11:59:01 +01:00 committed by GitHub
commit 1e61793348
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -20,7 +20,9 @@
$goto(`./datasource/${resp._id}`)
notifications.success(`Datasource updated successfully.`)
} catch (err) {
notifications.error("Error saving datasource")
notifications.error(err?.message ?? "Error saving datasource")
// prevent the modal from closing
return false
}
}