Skip to content

Commit

Permalink
BUGFIX: Fix usage of node.nodeAggregateId in fluid
Browse files Browse the repository at this point in the history
Fix usage in `Index` fluid template of `Neos\Neos\Controller\Service\NodesController`

Relates: #4156
  • Loading branch information
ahaeslich committed Apr 14, 2023
1 parent 47bcbe0 commit 9841571
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ <h1>{neos:backend.translate(id: 'service.nodes.title', value: 'Nodes')}</h1>
</f:if>
</f:alias>
<label class="node-label">{node.label}</label>
(<span class="node-identifier">{node.nodeAggregateId}</span>)
(<span class="node-identifier">{node.nodeAggregateId.value}</span>)
[<span class="node-type">{node.nodeType.name}</span>]
<f:link.action rel="node-show" controller="Service\Nodes" action="show" arguments="{identifier: node.nodeAggregateId.value}" format="html">{neos:backend.translate(id: 'service.nodes.show', value: 'Show')}</f:link.action>
</li>
Expand Down

0 comments on commit 9841571

Please sign in to comment.