By default, file content is only downloaded on the detail view (single record) to avoid performance issues. On the list view, only file metadata is returned (file icon and name).
If you want image thumbnails to appear on the list view, enable the download_images_on_list option. Only images (image/png, image/jpeg, etc.) will be downloaded. Other file types (PDF, ZIP, etc.) will still show just the file icon.
Image preview on list view
Hiding internal collections
Active Storage creates internal tables (active_storage_attachments, active_storage_blobs, active_storage_variant_records) that are automatically exposed by the ActiveRecord data source. These tables are not useful in the admin panel.
By default, the plugin hides these collections. If you need them visible (for example, if you use has_many_attached and want to browse attachments via related data), you can disable this behavior:
Limitations
Only has_one_attached is supported. has_many_attached is not currently handled by this plugin.
Works with any Active Storage backend (local disk, Amazon S3, Google Cloud Storage, Azure Storage, etc.).