show correct error and keep modal open

This commit is contained in:
Maurits Lourens 2022-03-08 11:15:02 +01:00
parent 946d245020
commit 4df23dd2b8
1 changed files with 3 additions and 1 deletions

View File

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