Skip to content

Commit

Permalink
[-] BO : Don't escape modules names
Browse files Browse the repository at this point in the history
  • Loading branch information
kpodemski committed Apr 4, 2016
1 parent cfbb8c2 commit 1a7bbfd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ data-categories="{{ module.attributes.get('refs')|join('|') }}" data-type="{{mod
<div class="module-item-wrapper-{{display_type}}">
<div class="module-item-heading-{{display_type}}" data-toggle="modal" data-target="#module-modal-read-more-{{module.attributes.get('name')}}">
<img class="module-logo-thumb-{{display_type}}" src="{{ module.attributes.get('media').img }}" alt="{{ module.attributes.get('displayName') }}" />
<h3 class="text-ellipsis module-name-{{display_type}}" data-toggle="tooltip" data-placement="top" title="{{ module.attributes.get('displayName') }}">
<h3 class="text-ellipsis module-name-{{display_type}}" data-toggle="tooltip" data-placement="top" title="{{ module.attributes.get('displayName')|raw }}">
{% if module.attributes.has('displayName') %}
{{ module.attributes.get('displayName') }}
{{ module.attributes.get('displayName')|raw }}
{% else %}
{{ module.attributes.get('name') }}
{% endif %}
Expand Down

0 comments on commit 1a7bbfd

Please sign in to comment.