Skip to content

Commit

Permalink
Merge pull request #10390 from mvdbeek/rule_builder_fix_20.01
Browse files Browse the repository at this point in the history
[20.01] Fix regex replacement wrongly appearing in rule builder
  • Loading branch information
jmchilton committed Oct 9, 2020
2 parents 11ea2cb + 715b370 commit 53b6003
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/galaxy/scripts/components/RuleCollectionBuilder.vue
Expand Up @@ -1962,7 +1962,7 @@ export default {
this.addColumnRegexGroupCount = 1;
}
if (val == "replacement") {
this.addColumnRegexReplacement = "\0";
this.addColumnRegexReplacement = null;
}
}
},
Expand Down

0 comments on commit 53b6003

Please sign in to comment.