Skip to content

Commit

Permalink
TASK: Adjust fluid template to removed NodeType::getName
Browse files Browse the repository at this point in the history
  • Loading branch information
mhsdesign committed Sep 29, 2023
1 parent 98fa454 commit 2d3bc0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ <h1>{neos:backend.translate(id: 'service.nodes.title', value: 'Nodes')}</h1>
</f:alias>
<label class="node-label">{node.label}</label>
(<span class="node-identifier">{node.nodeAggregateId.value}</span>)
[<span class="node-type">{node.nodeType.name}</span>]
[<span class="node-type">{node.nodeTypeName.value}</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>
</f:for>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ <h1>{neos:backend.translate(id: 'node', value: 'Node')}: {node.label}</h1>
</tr>
<tr>
<th>_type</th>
<td class="node-type">{node.nodeType.name}</td>
<td class="node-type">{node.nodeTypeName.value}</td>
</tr>
<f:for each="{convertedNodeProperties}" as="value" key="name">
<tr class="node-property">
Expand Down

0 comments on commit 2d3bc0a

Please sign in to comment.