fix error handling to throw proper errors

This commit is contained in:
Ulf Gebhardt 2023-01-19 15:33:38 +01:00
parent 901f09b9c7
commit 31b7e09017
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9

View File

@ -70,6 +70,6 @@ console.warn = (m) => {
}
// throw errors for vue warnings to force the programmers to take care about warnings
Vue.config.warnHandler = (w) => {
Vue.config.warnHandler = async (w) => {
throw new Error(w)
}