Wrong indicator in SelectFilter with multiple and translatable

Using the latest version (3.0.82) I'm having an issue with the filter indicator if I use the multiple option.
With single select filter, the indicator is shown in the active locale, but the multiple one, it shows the json

 ->filters([
      Tables\Filters\SelectFilter::make('gender')
          ->multiple()
          ->preload()
          ->relationship('gender', 'name')
          ->getOptionLabelFromRecordUsing(fn($record) => $record->name),

      Tables\Filters\SelectFilter::make('maritalStatus')
          ->preload()
          ->relationship('maritalStatus', 'name')
          ->getOptionLabelFromRecordUsing(fn($record) => $record->name),
2023-10-22_at_19.15.02.png
Was this page helpful?