Skip to content

Commit 8329cdd

Browse files
committed
Merge branch 'release/3.3.12'
2 parents bc7413b + 9db9b44 commit 8329cdd

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
All notable changes to the Form Render Skip Logic module will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [3.3.12] - 2021-05-26
6+
### Changed
7+
- Fix bug that removes arm-event after 10th control field in project level configuration, credit to REDCap community user nathan.orr (mbentz)
8+
59

610
## [3.3.11] - 2020-03-20
711
### Changed

VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.3.12

js/config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ $(document).ready(function() {
5353
var branchingLogicRadios = function($radio) {
5454
$radio.prop('checked', true);
5555

56-
var suffix = '____' + $radio.attr('name').slice(-1);
56+
var suffix = $radio.attr('name').slice($radio.attr('name').search('____'),$radio.attr('name').length);
5757
var selectorShow = '[name="control_event_id' + suffix + '"], [name="control_field_key' + suffix + '"]';
5858
var selectorHide = '[name="control_piping' + suffix + '"]';
5959

0 commit comments

Comments
 (0)