From 27cea48502b50c4ed8f9f56ed7daeecbb80e9ebf Mon Sep 17 00:00:00 2001 From: moisseev Date: Mon, 18 Apr 2022 17:44:12 +0300 Subject: [PATCH] [Minor] Use existing constant --- interface/js/app/rspamd.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/js/app/rspamd.js b/interface/js/app/rspamd.js index 0fe64ecb6..a8a904fd3 100644 --- a/interface/js/app/rspamd.js +++ b/interface/js/app/rspamd.js @@ -409,7 +409,7 @@ function ($, visibility, NProgress, stickyTabs, tab_stat, tab_graph, tab_config, (function initSettings() { var selected_locale = null; var custom_locale = null; - var localeTextbox = ".popover #settings-popover #locale"; + const localeTextbox = ".popover #settings-popover #locale"; function validateLocale(saveToLocalStorage) { function toggle_form_group_class(remove, add) { @@ -472,7 +472,7 @@ function ($, visibility, NProgress, stickyTabs, tab_stat, tab_graph, tab_config, localStorage.setItem("selected_locale", selected_locale); validateLocale(); }); - $(document).on("input", ".popover #settings-popover #locale", function () { + $(document).on("input", localeTextbox, function () { custom_locale = $(localeTextbox).val(); validateLocale(true); }); -- 2.39.5