Skip to content

Commit

Permalink
Fix multiple conversion selection in edit goal form (#17974)
Browse files Browse the repository at this point in the history
  • Loading branch information
sgiehl authored and mwithheld committed Sep 7, 2021
1 parent acbc112 commit 7f88a73
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -50,7 +50,7 @@
}

self.goal.matchAttribute = matchAttribute;
self.goal.allowMultiple = allowMultiple;
self.goal.allowMultiple = allowMultiple == true ? "1" : "0";
self.goal.patternType = patternType;
self.goal.pattern = pattern;
self.goal.caseSensitive = caseSensitive;
Expand Down

0 comments on commit 7f88a73

Please sign in to comment.