fix: shows download progress

This commit is contained in:
2025-06-03 11:14:38 -05:00
parent 234aeab120
commit 725034dd4e
4 changed files with 58 additions and 78 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace App\Twig\Components;
use App\Download\Framework\Entity\Download;
use Symfony\UX\TwigComponent\Attribute\AsTwigComponent;
#[AsTwigComponent]
final class DownloadListRow
{
public Download $download;
public bool $isWidget = true;
}