Upgrade to 3.5.3.1

This commit is contained in:
Bastian Allgeier
2021-02-24 17:17:08 +01:00
parent 448ec7e54e
commit 011139ef61
14 changed files with 108 additions and 73 deletions

View File

@@ -123,7 +123,7 @@ return [
'id' => $file->id(),
'icon' => $file->panelIcon($image),
'image' => $image,
'info' => $file->toString($this->info),
'info' => $file->toString($this->info ?? false),
'link' => $file->panelUrl(true),
'mime' => $file->mime(),
'parent' => $file->parent()->panelPath(),

View File

@@ -157,7 +157,7 @@ return [
'id' => $item->id(),
'dragText' => $item->dragText(),
'text' => $item->toString($this->text),
'info' => $item->toString($this->info),
'info' => $item->toString($this->info ?? false),
'parent' => $item->parentId(),
'icon' => $item->panelIcon($image),
'image' => $image,