This commit is contained in:
2020-03-29 00:47:19 +00:00
parent 4e5435e0f4
commit 408ae6d07d
10 changed files with 140 additions and 35 deletions

View File

@@ -158,8 +158,8 @@ export default {
},
methods: {
t: function(ltkey) {
return window.$gz.translation.get(ltkey);
t: function(tKey) {
return window.$gz.translation.get(tKey);
},
form() {
//nothing

View File

@@ -107,8 +107,8 @@ export default {
}
},
methods: {
t: function(ltkey) {
return window.$gz.translation.get(ltkey);
t: function(tKey) {
return window.$gz.translation.get(tKey);
},
hasError: function() {
return this.errors.length > 0;

View File

@@ -95,8 +95,8 @@ export default {
},
methods: {
t: function(ltkey) {
return window.$gz.translation.get(ltkey);
t: function(tKey) {
return window.$gz.translation.get(tKey);
},
addTag() {
var theTag = this.tagSearchEntry;