Fix repeater title generation in readOnly mode

Refs: 2a16847724
This commit is contained in:
Luke Towers 2017-07-09 13:06:23 -06:00 committed by GitHub
parent c9e31fd83b
commit 056a37fce4
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@
if ($textInput.length) {
return $textInput.val()
} else {
var $disabledTextInput = $('.text-field > .form-control', $target)
var $disabledTextInput = $('.text-field:first > .form-control', $target)
if ($disabledTextInput.length) {
return $disabledTextInput.text()
}