Fixed empty category items for app store page issue

This commit is contained in:
Cüneyt Şentürk 2023-08-15 11:03:59 +03:00
parent be85c647f9
commit 3a081523e8

View File

@ -64,7 +64,7 @@ class Items extends Component
protected function getModel($model) protected function getModel($model)
{ {
if (! empty($model)) { if (! empty($model)) {
if (! empty($model->data)) { if (isset($model->data)) {
return $model->data; return $model->data;
} }