Skip to content

Commit

Permalink
VP-525: use isAnyFilterApplied condition (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
AliveMen authored and yecli committed Sep 24, 2019
1 parent 4a212ec commit ca1d803
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ angular.module('virtoCommerce.exportModule')
var dataQuery = angular.copy(blade.exportDataRequest.dataQuery);
dataQuery.includedProperties = [];

if (!dataQuery.isAllSelected && !(dataQuery.objectIds && dataQuery.objectIds.length)) {
if (!dataQuery.isAllSelected && !(dataQuery.objectIds && dataQuery.objectIds.length) && !dataQuery.isAnyFilterApplied) {
blade.dataSelected = 0;
}
else {
Expand Down

0 comments on commit ca1d803

Please sign in to comment.