This commit is contained in:
2020-04-04 19:39:59 +00:00
parent 823b1aa7e5
commit 977b313fcf
12 changed files with 46 additions and 58 deletions

View File

@@ -1367,7 +1367,7 @@ function initDataObject(vm) {
}
vm.obj.editView = ret;
if (window.$gz.errorHandler.devMode) {
if (window.$gz.dev) {
if (vm.obj.editView.length != vm.fieldDefinitions.length) {
throw "ay-data-list-view::initDataObject - working array length not equal to total field definition length";
}
@@ -1446,7 +1446,7 @@ function getDisplayForFilter(
//VALUE FILTER
//Nothing more to do if there isn't both a value AND an operator at this point
if (filterOperator == null || filterValue == null) {
if (window.$gz.errorHandler.devMode()) {
if (window.$gz.dev) {
throw "ay-data-list-view::getDisplayForFilter Value filter missing one ore more of Operator, Value";
}
return "";

View File

@@ -374,9 +374,6 @@ export default {
}
},
methods: {
translation() {
return window.$gz.translation;
},
ayaType: function() {
return window.$gz.type;
},