TextEntry placeholder not working for related models

TextEntry::make('book.description')
  ->placeholder('None'),

This should show "None" but is blank.

I can see in
vendor/filament/infolists/resources/views/components/text-entry.blade.php::65
the state get's wrapped, which is causing it to be [ 0 => "" ] which resolves to true when deciding whether or not to show the placeholder.

is this a bug?
Was this page helpful?