From 5d38621527844153cf876a9bed6e866e0151286b Mon Sep 17 00:00:00 2001 From: mc-wright Date: Mon, 17 Jun 2024 14:55:01 -0400 Subject: [PATCH] Fixed bulk action count bug --- html/js/routes/hunt.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/js/routes/hunt.js b/html/js/routes/hunt.js index bfa40161..9366eeac 100644 --- a/html/js/routes/hunt.js +++ b/html/js/routes/hunt.js @@ -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);