Skip to content

Commit

Permalink
fix: add missing controller template
Browse files Browse the repository at this point in the history
  • Loading branch information
wilr authored Jun 8, 2023
1 parent bcdc2d0 commit 4463564
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Model/ElementVirtual.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
class ElementVirtual extends BaseElement
{
private static $icon = 'font-icon-block-link';
private static $icon = 'font-icon-block-virtual-page';

private static $has_one = [
'LinkedElement' => BaseElement::class
Expand All @@ -28,9 +28,11 @@ class ElementVirtual extends BaseElement

private static $table_name = 'ElementVirtual';

private static $singular_name = 'virtual block';
private static $singular_name = 'Virtual block';

private static $inline_editable = true;

private static $controller_template = 'ElementHolder_VirtualLinked';

/**
* @param BaseElement
Expand Down

0 comments on commit 4463564

Please sign in to comment.