Skip to content

Commit

Permalink
Issue #3357: pass on TreeView, Sort, and SortReverse
Browse files Browse the repository at this point in the history
  • Loading branch information
bschmalhofer committed May 1, 2024
1 parent 449b66c commit 8583927
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Kernel/Modules/AdminDynamicFieldReference.pm
Original file line number Diff line number Diff line change
Expand Up @@ -918,7 +918,10 @@ sub _ShowScreen {
Disabled => ( $Setting->{Disabled} // 0 ),
SelectedID => $Param{$Name} || '0',
Class => ( join ' ', @CssClasses ),
Multiple => ( $Setting->{Multiple} // 0 ),
Multiple => ( $Setting->{Multiple} // 0 ),
TreeView => ( $Setting->{TreeView} // 0 ),
Sort => ( $Setting->{Sort} // 0 ),
SortReverse => ( $Setting->{SortReverse} // 0 ),
);
$LayoutObject->Block(
Name => 'ConfigParamRow',
Expand Down

0 comments on commit 8583927

Please sign in to comment.