Skip to content

Commit 0e5fe92

Browse files
authored
IBX-7670: Added missing padding between fields in language form (#1436)
1 parent 8491b5f commit 0e5fe92

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/bundle/Resources/views/themes/admin/language/create.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<div class="card ibexa-card ibexa-card--light">
2525
<div class="card-body ibexa-card__body ibexa-form-block">
2626
{{ form_row(form.name, { row_attr: { class: 'ibexa-form-field' }, attr: {'autofocus': 'autofocus'} }) }}
27-
{{ form_row(form.languageCode, { row_attr: { class: 'ibexa-form-field ibexa-form-field--no-bottom-margin' } }) }}
27+
{{ form_row(form.languageCode, { row_attr: { class: 'ibexa-form-field' } }) }}
2828
{{ form_row(form.enabled, { row_attr: { class: 'ibexa-form-field' }, label_attr: { class: 'checkbox-inline' } }) }}
2929
</div>
3030
</div>

src/bundle/Resources/views/themes/admin/language/edit.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<section>
2323
<div class="card ibexa-card ibexa-card--light">
2424
<div class="card-body ibexa-card__body ibexa-form-block">
25-
{{ form_row(form.name, { row_attr: { class: 'ibexa-form-field ibexa-form-field--no-bottom-margin' } }) }}
25+
{{ form_row(form.name, { row_attr: { class: 'ibexa-form-field' } }) }}
2626
{{ form_row(form.enabled, { row_attr: { class: 'ibexa-form-field' }, label_attr: {'class': 'checkbox-inline'}}) }}
2727
</div>
2828
</div>

0 commit comments

Comments
 (0)