Skip to content
Snippets Groups Projects
Commit b8958509 authored by Arkerthan's avatar Arkerthan
Browse files

Fix RA simple mode not correctly excluding assignments

parent 496a0871
No related branches found
No related tags found
1 merge request!11092Fixes & Tweaks
......@@ -377,6 +377,9 @@ App.RA.Activation.SimpleEditor = (function() {
if (ruleState.assignmentMode !== "ignore" && ruleState.assignments.length > 0) {
rule.push(...ruleState.assignments);
rule.push(ruleState.assignments.length, "or");
if (ruleState.assignmentMode === "exclude") {
rule.push("not");
}
counter++;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment