diff --git a/application/app/DataTransferObjects/FundData.php b/application/app/DataTransferObjects/FundData.php index 73eab63dcc673259650d59f9c2a822ca59e00a8d..4477c460159d6b172dbd133fc91538ebea19b0fc 100644 --- a/application/app/DataTransferObjects/FundData.php +++ b/application/app/DataTransferObjects/FundData.php @@ -40,6 +40,27 @@ public function __construct( #[TypeScriptOptional] public ?string $content, + #[TypeScriptOptional] + public ?string $hero_img_url, + + #[TypeScriptOptional] + public ?string $totalAllocated, + + #[TypeScriptOptional] + public ?string $totalBudget, + + #[TypeScriptOptional] + public ?string $fundedProjects, + + #[TypeScriptOptional] + public ?string $totalProjects, + + #[TypeScriptOptional] + public ?string $percentageChange, + + #[TypeScriptOptional] + public ?string $projectPercentageChange, + #[TypeScriptOptional] public ?string $status, diff --git a/application/resources/js/Components/Select.tsx b/application/resources/js/Components/Select.tsx index 148f4566c6214c595339a0a9fa38db1635d97903..6a9275910bd215b4ee5f3ddaa6c099fdd72f1084 100644 --- a/application/resources/js/Components/Select.tsx +++ b/application/resources/js/Components/Select.tsx @@ -134,7 +134,7 @@ export default function Selector({ } value={option.value} onChange={() => {}} - className="text-content-accent h-4 w-4 bg-background shadow-sm checked:bg-primary checked:hover:bg-primary focus:border focus:border-primary focus:ring-primary checked:focus:bg-primary" + className="ml-2 text-content-accent h-4 w-4 bg-background shadow-sm checked:bg-primary checked:hover:bg-primary focus:border focus:border-primary focus:ring-primary checked:focus:bg-primary" /> )} </div>