owl-cli 5.29.0 → 5.30.0
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.
|
@@ -872,7 +872,7 @@ var @projectCodeService = (function (pigeon) {
|
|
|
872
872
|
return filters;
|
|
873
873
|
},
|
|
874
874
|
|
|
875
|
-
buildQuery(m,searchArgs,keyword){
|
|
875
|
+
buildQuery:function(m,searchArgs,keyword){
|
|
876
876
|
delete searchArgs.keyword;
|
|
877
877
|
var filters = [];
|
|
878
878
|
for(var k in searchArgs){
|
|
@@ -964,7 +964,7 @@ var @projectCodeService = (function (pigeon) {
|
|
|
964
964
|
}
|
|
965
965
|
return query;
|
|
966
966
|
},
|
|
967
|
-
count(m,searchArgs,keyword,dataSource){
|
|
967
|
+
count:function(m,searchArgs,keyword,dataSource){
|
|
968
968
|
var query = f.buildQuery(m,searchArgs,keyword);
|
|
969
969
|
var elasticSearchUrl = $.getEnv( "elasticSearchUrl" );
|
|
970
970
|
|