Skip to content

Commit

Permalink
IBX-2087: Fixed error in user settings (#249)
Browse files Browse the repository at this point in the history
  • Loading branch information
dew326 authored Jan 27, 2022
1 parent 2131304 commit 6894906
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@
{% form_theme form '@ibexadesign/ui/form_fields.html.twig' '@ibexadesign/account/settings/update_datetime_format.html.twig' %}

<div class="row">
<div class="col col-10 offset-1">
<section class="container ibexa-container">
{{ form_start(form) }}
<div class="col col-6 offset-1">
{{ form_start(form) }}
{{ form_widget(form.identifier, {'attr': {'hidden': 'hidden'}}) }}
{% include '@ibexadesign/ui/component/table/table_header.html.twig' with {
headline: user_setting_group.name
Expand All @@ -36,8 +35,7 @@
</div>
{% endfor %}
{{ form_widget(form.update, {'attr': {'hidden': 'hidden'}}) }}
{{ form_end(form) }}
</section>
{{ form_end(form) }}
</div>
</div>
{% endblock %}
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<div class="ibexa-edit-header__column ibexa-edit-header__column--left">
<h1 class="ibexa-edit-header__title">
{{ title }}
{% if (description is defined and description|length) or content is defined %}
{% if (description is defined and description|length) or content is defined and content is not null %}
<div class="ibexa-edit-header__tooltip" title="{% include '@ibexadesign/ui/edit_header_tooltip.html.twig' %}">
<svg class="ibexa-icon ibexa-icon--small">
<use xlink:href="{{ ibexa_icon_path('about') }}"></use>
Expand Down

0 comments on commit 6894906

Please sign in to comment.