diff --git a/resources/assets/js/functions/web.js b/resources/assets/js/functions/web.js index 9951e9ded..9f784c484 100755 --- a/resources/assets/js/functions/web.js +++ b/resources/assets/js/functions/web.js @@ -729,10 +729,16 @@ }, messageWarning(msg) { + if (typeof msg === "string" && msg === "Network exception") { + return; + } $A.Message.warning($A.L(msg)); }, messageError(msg) { + if (typeof msg === "string" && msg === "Network exception") { + return; + } $A.Message.error($A.L(msg)); },