Skip to content

Commit

Permalink
TASK: Migrate .id() to .aggregateId
Browse files Browse the repository at this point in the history
  • Loading branch information
mhsdesign committed Oct 17, 2024
1 parent a56f25f commit 65218bd
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 @@ -127,7 +127,7 @@ Feature: Tests for the "Neos.Neos:ContentCollection" Fusion prototype
include: resource://Neos.Neos/Private/Fusion/Root.fusion
prototype(Neos.Neos:Test.ContentType) < prototype(Neos.Fusion:Value) {
value = ${q(node).id() + ' (' + node.nodeTypeName.value + ') '}
value = ${node.aggregateId + ' (' + node.nodeTypeName.value + ') '}
}
test = Neos.Neos:ContentCollection {
Expand Down
2 changes: 1 addition & 1 deletion Neos.Neos/Tests/Behavior/Features/Fusion/FlowQuery.feature
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Feature: Tests for the "Neos.ContentRepository" Flow Query methods.
renderer = Neos.Fusion:Loop {
items = ${props.nodes}
itemName = 'node'
itemRenderer = ${q(node).id()}
itemRenderer = ${node.aggregateId}
@glue = ','
}
}
Expand Down
2 changes: 1 addition & 1 deletion Neos.Neos/Tests/Behavior/Features/Fusion/Menu.feature
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Feature: Tests for the "Neos.Neos:Menu" and related Fusion prototypes
renderer = Neos.Fusion:Loop {
items = ${props.items}
itemRenderer = afx`
{q(item.node).id()}<Neos.Neos:Test.Menu.ItemStateIndicator state={item.state.value} /> ({item.menuLevel}){String.chr(10)}
{item.node.aggregateId}<Neos.Neos:Test.Menu.ItemStateIndicator state={item.state.value} /> ({item.menuLevel}){String.chr(10)}
<Neos.Neos:Test.Menu items={item.subItems} @if={item.subItems} />
`
}
Expand Down

0 comments on commit 65218bd

Please sign in to comment.