Skip to content

Commit

Permalink
BUGFIX: Icons in Neos 4.0+
Browse files Browse the repository at this point in the history
  • Loading branch information
aertmann committed Sep 25, 2018
1 parent 57cf951 commit 0a50ed5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Resources/Private/Templates/History/Index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</form>

<f:if condition="{node}">
<label><b>{neos:backend.translate(id: 'page', package: 'Neos.Neos')}</b> <f:link.action action="index" arguments="{site: site}"><i class="icon-remove"></i></f:link.action></label>
<label><b>{neos:backend.translate(id: 'page', package: 'Neos.Neos')}</b> <f:link.action action="index" arguments="{site: site}"><i class="icon-remove fas fa-times"></i></f:link.action></label>
<f:if condition="{firstEvent}">
<f:then><f:render section="nodeLink" arguments="{event: firstEvent, site: site}" /></f:then>
<f:else>{neos:backend.translate(id: 'unavailable', package: 'Neos.Neos')}</f:else>
Expand Down Expand Up @@ -80,7 +80,7 @@ <h3 class="neos-history-event-title">
<f:if condition="{event.data.old}">
<ae:diff nodeEvent="{event}">
<f:if condition="{changes -> f:count()} > 0">
<span class="neos-history-event-details" data-neos-toggle="popover" data-placement="bottom" data-title="Modifications to <i class='{ae:nodeTypeIcon(nodeType: event.data.nodeType)}'></i> {event.data.nodeLabel}" data-html="true" data-content="{f:render(section: 'changes', arguments: {changes: changes}) -> f:format.htmlentities()}"><i class="icon-question-sign"></i></span>
<span class="neos-history-event-details" data-neos-toggle="popover" data-placement="bottom" data-title="Modifications to <i class='{ae:nodeTypeIcon(nodeType: event.data.nodeType)}'></i> {event.data.nodeLabel}" data-html="true" data-content="{f:render(section: 'changes', arguments: {changes: changes}) -> f:format.htmlentities()}"><i class="icon-question-sign fas fa-question-circle"></i></span>
</f:if>
</ae:diff>
</f:if>
Expand Down Expand Up @@ -180,7 +180,7 @@ <h3 class="neos-history-event-title">
<f:link.action action="index" arguments="{node: event.nodeIdentifier, site: site}" additionalAttributes="{title: '{f:render(section: \'documentBreadcrumb\', arguments: {node: event.node})}'}" data="{'neos-toggle': 'tooltip'}">
<i class="{ae:nodeTypeIcon(nodeType: event.data.documentNodeType)}"></i> {event.data.documentNodeLabel}
</f:link.action>
<neos:link.node node="{event.node}"><i class="icon-external-link"></i></neos:link.node>
<neos:link.node node="{event.node}"><i class="icon-external-link fas fa-external-link-alt"></i></neos:link.node>
</f:then>
<f:else>
<f:link.action action="index" arguments="{node: event.nodeIdentifier, site: site}" title="{neos:backend.translate(id: 'history.nodeRemovedInMeantime', source: 'Modules', package: 'Neos.Neos')}" data="{'neos-toggle': 'tooltip'}">
Expand Down

0 comments on commit 0a50ed5

Please sign in to comment.