We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ddc3d3 commit 3a362b7Copy full SHA for 3a362b7
src/VirtoCommerce.Platform.Web/wwwroot/js/common/directives/uiScroll.js
@@ -129,7 +129,7 @@ angular.module('platformWebApp')
129
}
130
131
function join(newItems, callFilter) {
132
- newItems = _.reject(newItems, x => _.any($scope.items, y => y.id === x.id));
+ $scope.items = _.reject($scope.items, x => _.any(newItems, y => y.id === x.id));
133
134
if (callFilter) {
135
newItems = filterItems(newItems);
0 commit comments