diff --git a/Theme/Backend/Components/AccountGroupSelector/BaseView.php b/Theme/Backend/Components/AccountGroupSelector/BaseView.php index fcc7b38..ed46566 100644 --- a/Theme/Backend/Components/AccountGroupSelector/BaseView.php +++ b/Theme/Backend/Components/AccountGroupSelector/BaseView.php @@ -47,7 +47,7 @@ class BaseView extends View public function render(...$data) : string { $this->id = $data[0]; - $this->required = $data[1] ?? false; + $this->isRequired = $data[1] ?? false; $this->getData('popup')->setId($this->id); return parent::render(); }