This commit is contained in:
2020-06-29 22:05:02 +00:00
parent 31f87a7eb8
commit e263275abf
8 changed files with 84 additions and 9 deletions

View File

@@ -40,7 +40,7 @@ export default {
/////////////////////////////
//
//
//
function clickHandler(menuItem) {
if (!menuItem) {
return;

View File

@@ -131,8 +131,6 @@ function generateMenu(vm) {
}
};
// //STUB REPORTS
// //Report not Print, print is a further option
// menuOptions.menuItems.push({

View File

@@ -175,7 +175,13 @@
</div>
<!-- INTEGER BUILDER -->
<div v-if="item.uiFieldDataType === 5">
<!-- Also MemorySize type 14 are integers -->
<div
v-if="
item.uiFieldDataType === 5 ||
item.uiFieldDataType === 14
"
>
<v-select
v-model="item.tempFilterOperator"
:items="selectLists.integerFilterOperators"