Browse Source

[FIX] upload.js - eslint

tags/1.9.0
Carsten Rosenberg 5 years ago
parent
commit
110f02f449
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      interface/js/app/upload.js

+ 2
- 2
interface/js/app/upload.js View File

@@ -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";

Loading…
Cancel
Save