From d79888f8efcbbb7263e021b73c3f9f94e4f8549b Mon Sep 17 00:00:00 2001 From: moisseev Date: Wed, 11 Oct 2023 10:53:35 +0300 Subject: [PATCH] [Minor] Remove unused FooTable hook as the ability to set dropdown value through the FooTable options is not used in the project. --- interface/js/app/rspamd.js | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/interface/js/app/rspamd.js b/interface/js/app/rspamd.js index 67b60d973d..763579ca67 100644 --- a/interface/js/app/rspamd.js +++ b/interface/js/app/rspamd.js @@ -824,19 +824,6 @@ function ($, visibility, NProgress, stickyTabs, tab_stat, tab_graph, tab_config, self.removeFilter("action"); } self.filter(); - }, - draw: function () { - this._super(); - var action = this.find("action"); - if (action instanceof FooTable.Filter) { - if (action.query.val() === "reject -soft") { - this.$action.val("reject"); - } else { - this.$action.val(action.query.val()); - } - } else { - this.$action.val(this.def); - } } }); /* eslint-enable consistent-this, no-underscore-dangle, one-var-declaration-per-line */ -- 2.47.3