Skip to content

Commit

Permalink
Fix template name in tree
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruslan-Aleev committed Aug 16, 2024
1 parent 14d21a1 commit 86f3c57
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,12 +227,12 @@ public function getPropertySetNode()
];
}
$setArray = [
'text' => $el->get('name'),
'text' => $el->get($uk),

Check warning on line 230 in core/src/Revolution/Processors/Element/PropertySet/GetNodes.php

View check run for this annotation

Codecov / codecov/patch

core/src/Revolution/Processors/Element/PropertySet/GetNodes.php#L230

Added line #L230 was not covered by tests
'id' => 'el_' . $el->get('property_set') . '_' . $el->get('id') . '_' . $class,
'leaf' => true,
'href' => '',
'pk' => $el->get('id'),
'qtip' => "<i>{$alias}</i>: <b>{$el->get('name')}</b>" . ($el->get('description') != '' ? ' - ' . $el->get('description') : ''),
'qtip' => "<i>{$alias}</i>: <b>{$el->get($uk)}</b>" . ($el->get('description') != '' ? ' - ' . $el->get('description') : ''),

Check warning on line 235 in core/src/Revolution/Processors/Element/PropertySet/GetNodes.php

View workflow job for this annotation

GitHub Actions / phpcs

Line exceeds 120 characters; contains 145 characters

Check warning on line 235 in core/src/Revolution/Processors/Element/PropertySet/GetNodes.php

View check run for this annotation

Codecov / codecov/patch

core/src/Revolution/Processors/Element/PropertySet/GetNodes.php#L235

Added line #L235 was not covered by tests
'iconCls' => $this->getNodeIcon($alias),
'propertyset' => $el->get('property_set'),
'element_class' => $class,
Expand Down

0 comments on commit 86f3c57

Please sign in to comment.