Skip to content

Commit

Permalink
Issue #2251: Aligning template data keys.
Browse files Browse the repository at this point in the history
Correcting jQuery selector.
  • Loading branch information
stefanhaerter committed Apr 13, 2023
1 parent 5121a8c commit 97344f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Kernel/System/DynamicField/Driver/BaseSelect.pm
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ EOF

if ( $FieldConfig->{MultiValue} ) {
$Data->{MultiValue} = \@ResultHTML;
$Data->{FieldTemplate} = $TemplateHTML;
$Data->{MultiValueTemplate} = $TemplateHTML;
}
else {
$Data->{Field} = $ResultHTML[0];
Expand Down
2 changes: 1 addition & 1 deletion var/httpd/htdocs/js/Core.UI.InputFields.js
Original file line number Diff line number Diff line change
Expand Up @@ -2694,7 +2694,7 @@ Core.UI.InputFields = (function (TargetNS) {
};

TargetNS.InitMultiValueDynamicFields = function () {
$('.Row.MultiValue').each( function() {
$('.Row.MultiColumn').each( function() {
var $Row = $(this);

InitMultiValueFieldRow( $Row );
Expand Down

0 comments on commit 97344f3

Please sign in to comment.