Skip to content
This repository has been archived by the owner on Feb 13, 2022. It is now read-only.

Commit

Permalink
Merge branch 'release/5.8.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanbegbie committed Nov 8, 2017
2 parents 588430d + 91058f3 commit 842ff75
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
CHANGE LOG
==========

5.8.2
--------
- Bug Fix: fixed string replacement bug in combination rule javascript

5.8.1
--------
- Fixed Combination Rule clean method for checking rule operator ordering
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.8.1
5.8.2
2 changes: 1 addition & 1 deletion molo/surveys/static/js/survey-admin.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ $(function(){
$.each(ruleIndex, function(index_outer, form){
$.each(form.blockIds, function(index_inner, value) {
ruleValueTextPairs.push({
"value": form.ruleName.replace(" ", "") + "_" + String(index_inner),
"value": form.ruleName.replace(/ /g, "") + "_" + String(index_inner),
"text": form.ruleName + " " + String(index_inner + 1),
});
});
Expand Down

0 comments on commit 842ff75

Please sign in to comment.