Skip to content

Commit

Permalink
Merge pull request #548 from Security-Onion-Solutions/mwright/bulkAct…
Browse files Browse the repository at this point in the history
…ionCountBug

Fixed bug where bulk action banner showed incorrect number of rules changed
  • Loading branch information
mc-wright authored Jun 17, 2024
2 parents 13276f0 + 5d38621 commit 14017ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion html/js/routes/hunt.js
Original file line number Diff line number Diff line change
Expand Up @@ -2256,7 +2256,7 @@ const huntComponent = {
msg = this.i18n.bulkActionDeleteStarted;
}

msg = msg.replace('{total}', this.selectedCount.toLocaleString());
msg = msg.replace('{total}', (this.selectAllState === true ? this.totalEvents : this.selectedCount).toLocaleString());

this.$root.showTip(msg);

Expand Down

0 comments on commit 14017ec

Please sign in to comment.