commit 110f02f: [FIX] upload.js - eslint
Carsten Rosenberg
c.rosenberg at heinlein-support.de
Sat Jan 19 14:28:04 UTC 2019
Author: Carsten Rosenberg
Date: 2019-01-19 08:28:49 +0100
URL: https://github.com/rspamd/rspamd/commit/110f02f4495859a9203415a4eda41d27e91e50f9 (refs/pull/2720/head)
[FIX] upload.js - eslint
---
interface/js/app/upload.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/interface/js/app/upload.js b/interface/js/app/upload.js
index f77cb7e78..d5d0768f1 100644
--- a/interface/js/app/upload.js
+++ b/interface/js/app/upload.js
@@ -74,9 +74,9 @@ define(["jquery"],
rspamd.alertMessage("alert-success", "Data successfully scanned");
var action = "";
- if (json.action === "clean" || "no action") {
+ if (json.action === "clean" || json.action === "no action") {
action = "label-success";
- } else if (json.action === "rewrite subject" || "add header" || "probable spam") {
+ } else if (json.action === "rewrite subject" || json.action === "add header" || json.action === "probable spam") {
action = "label-warning";
} else if (json.action === "spam") {
action = "label-danger";
More information about the Commits
mailing list