Skip to content

Commit

Permalink
BUGFIX: Fix accessing nodeAggregateId during content reload (#3505)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahaeslich authored May 25, 2023
1 parent 5e93dac commit b2222ab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public function getType(): string

public function getDescription(): string
{
return sprintf('Rendering of node "%s" required.', $this->node?->nodeAggregateId ?: '');
return sprintf('Rendering of node "%s" required.', $this->node?->nodeAggregateId->value);
}

/**
Expand Down

0 comments on commit b2222ab

Please sign in to comment.