FIX: Ensure GridField breadcrumbs use correct casting class (fixed #11174)

This commit is contained in:
Loz Calver 2024-03-08 16:07:11 +00:00
parent dba87348f9
commit ea45a4d7d9
1 changed files with 1 additions and 1 deletions

View File

@ -890,7 +890,7 @@ class GridFieldDetailForm_ItemRequest extends RequestHandler
}
if ($this->record && $this->record->ID) {
$title = ($this->record->Title) ? $this->record->Title : "#{$this->record->ID}";
$title = ($this->record->Title) ? $this->record->obj('Title') : "#{$this->record->ID}";
$items->push(ArrayData::create([
'Title' => $title,
'Link' => $this->Link()