SpatieMediaLibraryImageEntry stopped displaying images

Just noticed after upgrade to 3.2.52 (filament/spatie-laravel-media-library-plugin). I don't see any breaking changes. I'm using s3 (minio) storage.
 Components\SpatieMediaLibraryImageEntry::make('designerProfile.media')
      ->label('Project wykonany przez')
      ->helperText(fn ($record) => $record->designerProfile->profile_name)
      ->collection(config('project.designer_media_collections.logo'))
      //->conversion('full')
      ->extraImgAttributes([
          'class' => 'rounded-lg',
      ])
      ->size('100%')
      ->checkFileExistence(false)
      ->url(
          fn ($record): string => DesignerProfileResource::getUrl(
              'view',
              ['record' => $record->designer_profile_id]
          )
      ),


the same with

Tables\Columns\SpatieMediaLibraryImageColumn::make('logo')
    ->collection(config('project.designer_media_collections.logo'))
    ->conversion('thumb')
    ->size('100%')
    ->extraImgAttributes([
        'class' => 'rounded-lg',
    ])
    ->alignCenter(),
Was this page helpful?