Bug 1468102 - Import remove explicitly from lodash (#3890)

This commit is contained in:
Sarat Addepalli 2018-08-08 23:59:47 +05:30 коммит произвёл William Lachance
Родитель 4b4e51cb54
Коммит 6a37e7be5c
1 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -4,6 +4,7 @@
import $ from 'jquery';
import _ from 'lodash';
import remove from 'lodash/remove';
import angular from 'angular';
import Mousetrap from 'mousetrap';
@ -944,7 +945,7 @@ perf.controller('TestChooserCtrl', ['$scope', '$uibModalInstance',
}
// unconditionally remove it from the current list
_.remove($scope.testsToAdd, test);
remove($scope.testsToAdd, test);
});
// resort unselected test list
$scope.unselectedTestList = _.sortBy($scope.unselectedTestList,
@ -959,7 +960,7 @@ perf.controller('TestChooserCtrl', ['$scope', '$uibModalInstance',
});
// Remove the added tests from the unselected test list
_.remove($scope.unselectedTestList, { signature: signature });
remove($scope.unselectedTestList, { signature: signature });
});
};
@ -1100,7 +1101,7 @@ perf.controller('TestChooserCtrl', ['$scope', '$uibModalInstance',
// filter out tests which are already displayed or are
// already selected
[...new Set([...testsDisplayed, ...$scope.testsToAdd])].forEach((test) => {
_.remove($scope.unselectedTestList, {
remove($scope.unselectedTestList, {
projectName: test.projectName,
signature: test.signature });
});