We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f303bd commit 27d3b00Copy full SHA for 27d3b00
Block/SetList.php
@@ -319,9 +319,9 @@ public function getIdentities(): array
319
{
320
$identities = [];
321
322
- $entity = $this->getLayer()->getCurrentAttributeSet();
323
- if ($entity) {
324
- $identities[] = CustomEntity::CACHE_CUSTOM_ENTITY_SET_TAG . '_' . $entity->getAttributeSetId();
+ $set = $this->getLayer()->getCurrentAttributeSet();
+ if ($set) {
+ $identities[] = CustomEntity::CACHE_CUSTOM_ENTITY_SET_TAG . '_' . $set->getAttributeSetId();
325
}
326
327
foreach ($this->_getEntityCollection() as $entity) {
0 commit comments