This commit is contained in:
@@ -283,7 +283,7 @@
|
|||||||
:key="index"
|
:key="index"
|
||||||
>
|
>
|
||||||
<v-list-item-content>
|
<v-list-item-content>
|
||||||
<v-list-item-title v-text="filtereditItem.display">
|
<v-list-item-title v-text="filterItem.display">
|
||||||
</v-list-item-title>
|
</v-list-item-title>
|
||||||
</v-list-item-content>
|
</v-list-item-content>
|
||||||
<v-list-item-action>
|
<v-list-item-action>
|
||||||
@@ -381,13 +381,19 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//BLANKS / NONBLANKS TOKENS?
|
//BLANKS / NONBLANKS TOKENS?
|
||||||
if (false == filterItemSet && editItem.tempFilterOperator == "*NOVALUE*") {
|
if (
|
||||||
|
false == filterItemSet &&
|
||||||
|
editItem.tempFilterOperator == "*NOVALUE*"
|
||||||
|
) {
|
||||||
filterItem.op = "=";
|
filterItem.op = "=";
|
||||||
filterItem.value = "*NULL*";
|
filterItem.value = "*NULL*";
|
||||||
filterItemSet = true;
|
filterItemSet = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (false == filterItemSet && editItem.tempFilterOperator == "*HASVALUE*") {
|
if (
|
||||||
|
false == filterItemSet &&
|
||||||
|
editItem.tempFilterOperator == "*HASVALUE*"
|
||||||
|
) {
|
||||||
filterItem.op = "!=";
|
filterItem.op = "!=";
|
||||||
filterItem.value = "*NULL*";
|
filterItem.value = "*NULL*";
|
||||||
filterItemSet = true;
|
filterItemSet = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user