This commit is contained in:
2019-03-06 21:38:01 +00:00
parent d6a82f902e
commit 6bf7ea21e7
2 changed files with 5 additions and 14 deletions

View File

@@ -1,6 +1,6 @@
<template>
<v-layout row v-if="this.ready">
<v-flex >
<v-layout row v-if="this.ready">
<v-flex>
<h1>{{ this.$gzlocale.get("Log")}}</h1>
<v-textarea v-model="logText" full-width readonly auto-grow></v-textarea>
</v-flex>
@@ -17,15 +17,10 @@ export default {
this.$gzlocale
.fetch(["Log"])
.then(function() {
// Trigger the fetchEnd event
// document.dispatchEvent(fetchEnd);
console.log("FETCHED OK");
that.ready = true;
})
.catch(function(thing) {
// Trigger the fetchEnd event
//document.dispatchEvent(fetchEnd);
console.log("FETCHED FAILED!" + thing);
.catch(function(err) {
throw err;
});
},
data() {