devarification complete, tests ok

This commit is contained in:
2020-04-02 22:31:04 +00:00
parent d9cf0dd106
commit 6212ff7ce8
8 changed files with 28 additions and 28 deletions

View File

@@ -22,7 +22,7 @@ export default {
},
created() {
// debugger;
var badPath = this.$router.history.current.path;
let badPath = this.$router.history.current.path;
//If this happens too early then it might not have all the setup stuf available which would trigger an infinite loop
if (
!window ||
@@ -33,7 +33,7 @@ export default {
) {
this.msg = '404 - NOT FOUND: "' + badPath + '"';
} else {
var notFoundTranslated = window.$gz.translation.get("ErrorAPI2010");
let notFoundTranslated = window.$gz.translation.get("ErrorAPI2010");
//format the message
this.msg = "404 - " + notFoundTranslated + ': "' + badPath + '"';
//log it in case we need to see it in tech support