Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Ebuson committed Jan 13, 2022
1 parent feadceb commit 9c04d06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kahuna/public/js/search/results.js
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ results.controller('SearchResultsCtrl', [
$scope.$on("events:batch-operations:start", (e, entry) => {
ctrl.batchOperations = [entry, ...ctrl.batchOperations];
if (entry.key === "peopleInImage" && ctrl.batchOperations.length > 1){
ctrl.batchOperations = [Object.assign({}, entry, { total: ctrl.batchOperations.length })]
ctrl.batchOperations = [Object.assign({}, entry, { total: ctrl.batchOperations.length })];
}

window.onbeforeunload = function() {
Expand Down

0 comments on commit 9c04d06

Please sign in to comment.