Skip to content

Commit adf4477

Browse files
committed
after cr
1 parent c91193e commit adf4477

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/bundle/Resources/public/ts/components/dropdown/dropdown_single_input.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export class DropdownSingleInput extends BaseDropdown {
2424

2525
this._itemsMap.forEach((item) => {
2626
const option = document.createElement('option');
27+
2728
option.value = item.id;
2829
option.textContent = item.label;
2930

src/bundle/Resources/views/themes/standard/design_system/components/expander.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set label = is_expanded ? collapse_label : expand_label %}
2-
{% set has_label = label != '' %}
2+
{% set has_label = label is not empty %}
33

44
{% set button_classes =
55
html_classes(

0 commit comments

Comments
 (0)