@adins/ucsearch 3.4.4 → 3.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1109,6 +1109,11 @@ class UCSearchComponent {
|
|
|
1109
1109
|
critObj.restriction = AdInsConstant.RestrictionEq;
|
|
1110
1110
|
arrayCrit.push(critObj);
|
|
1111
1111
|
}
|
|
1112
|
+
if (optValue == "all") {
|
|
1113
|
+
let critObj = new CriteriaObj();
|
|
1114
|
+
arrayCrit.push(critObj);
|
|
1115
|
+
jsonComp[j].value = "all";
|
|
1116
|
+
}
|
|
1112
1117
|
request.criteria = arrayCrit;
|
|
1113
1118
|
if (jsonComp[j].path != undefined && jsonComp[j].path != "") {
|
|
1114
1119
|
if (this.searchInput.listEnvironments != undefined && this.searchInput.listEnvironments.length != 0) {
|