From 104eebf96028fd7bfee37fec077c6a5346304673 Mon Sep 17 00:00:00 2001 From: Alexander Moisseev Date: Thu, 5 Jul 2018 10:20:15 +0300 Subject: [PATCH] [Minor] JS: Disable "no-alert" rule for a line --- interface/js/app/history.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/js/app/history.js b/interface/js/app/history.js index 2d8c739fb..a30a2e54b 100644 --- a/interface/js/app/history.js +++ b/interface/js/app/history.js @@ -673,7 +673,7 @@ define(["jquery", "footable", "humanize"], $("#resetHistory").off("click"); $("#resetHistory").on("click", function (e) { e.preventDefault(); - if (!confirm("Are you sure you want to reset history log?")) { + if (!confirm("Are you sure you want to reset history log?")) { // eslint-disable-line no-alert return; } if (ft.history) { -- 2.39.5