Skip to content

Commit

Permalink
fix rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorisek committed Nov 28, 2024
1 parent 21bc538 commit 5abaca5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions demos/form-control/dropdown-plus.php
Original file line number Diff line number Diff line change
Expand Up @@ -122,14 +122,14 @@
$form->addControl('html_multi', [
Form\Control\Dropdown::class,
'caption' => 'HTML multiple',
'isMultiple' => true,
'multiple' => true,
'values' => $htmlValues,
]);

$form->addControl('html_multi2', [
Form\Control\Dropdown::class,
'caption' => 'HTML multiple allow addition',
'isMultiple' => true,
'multiple' => true,
'values' => $htmlValues,
'dropdownOptions' => ['allowAdditions' => true],
]);
Expand Down

0 comments on commit 5abaca5

Please sign in to comment.