Also log modal errors to the console

This commit is contained in:
Richard Bowman 2023-12-15 02:39:03 +00:00
parent b23d6043c5
commit c1ed5d0c87

View file

@ -130,6 +130,7 @@ Vue.mixin({
modalError: function(error) {
var errormsg = this.getErrorMessage(error);
this.$store.commit("setErrorMessage", errormsg);
console.log("Modal error:", error);
UIkit.notification({
message: `${errormsg}`,
status: "danger"