Skip to content

Commit

Permalink
fix rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorisek committed Jan 12, 2025
1 parent 8633acd commit f03b765
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 f03b765

Please sign in to comment.