TextColumn placeholder empty

Hi!

I've got an app I just upgraded from v2 to v3. I've got most of the kinks worked out, but one small thing is bugging me:

->placeholder seems to not do much. Here's the column:

TextColumn::make('cost_usd')
    ->placeholder('In progress')
    ->label('Cost')
    ->formatStateUsing(
        fn (float $state): string => '$' . number_format($state, 2)
    ),


The cost_usd attribute is a nullable float (😬). formatStateUsing here works fine, and the column in the resulting table looks correct...except if the value is null. placeholder doesn't seem to make a difference.

The table is in a custom widget and otherwise works great.

Am I missing something?
Solution
I think this is a known bug and on the radar.
Was this page helpful?