Skip to content

Commit

Permalink
IBX-7454, IBX-7075: Fixed misaligned limitations on policies list (#1078
Browse files Browse the repository at this point in the history
)

* IBX-7454: Fixed misaligned limitations on policies list
* IBX-7075: Fixed misaligned limitations on roles > assignments tab
* IBX-7454: Fixed misaligned limitations on policies tab
  • Loading branch information
adamwojs authored Jan 3, 2024
1 parent c4d1924 commit 5e15083
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

{% set col_raw %}
{%- if policy.limitations is not empty -%}
<ul class="list-unstyled">
<ul class="list-unstyled m-0">
{%- for limitation in policy.limitations -%}
<li>
<span
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

{% set col_raw %}
{%- if policy.limitations is not empty -%}
<ul class="list-unstyled">
<ul class="list-unstyled m-0">
{%- for limitation in policy.limitations -%}
<li>
<span
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
{% set col_raw %}
{%- set limitation = role_assignment.rolelimitation -%}
{%- if limitation -%}
<ul class="list-unstyled">
<ul class="list-unstyled m-0">
<li>
<span class="font-weight-bold" title="{{ 'policy.limitation.identifier_tooltip' | trans({'%identifier%': limitation.identifier})|desc('"%identifier%" Limitation') }}">
{{ ('policy.limitation.identifier.' ~ limitation.identifier|lower)|trans({'%identifier%': limitation.identifier}, 'ibexa_content_forms_policies')|desc('%identifier%') }}:
Expand Down

0 comments on commit 5e15083

Please sign in to comment.