fix: Update PrimeReact to v10.8.3 and fix all compilation errors

This commit is contained in:
dahoud
2025-10-13 03:01:36 +00:00
parent 2a2e54c0e3
commit 30cad6220b
85 changed files with 928 additions and 2020 deletions

View File

@@ -190,7 +190,7 @@ Variance budgétaire: ${formatCurrency(totalCost - totalBudget)} (${Math.round((
return (
<div className="flex align-items-center gap-2">
<Tag value="Terminé" severity="secondary" />
<Tag value="Terminé" severity="info" />
{onTime && <Tag value="Dans les délais" severity="success" />}
{!onTime && <Tag value="En retard" severity="warning" />}
{onBudget && <Tag value="Budget respecté" severity="success" />}
@@ -281,6 +281,7 @@ Variance budgétaire: ${formatCurrency(totalCost - totalBudget)} (${Math.round((
value={chantiers}
selection={selectedChantiers}
onSelectionChange={(e) => setSelectedChantiers(e.value)}
selectionMode="multiple"
dataKey="id"
paginator
rows={10}
@@ -401,4 +402,6 @@ Variance budgétaire: ${formatCurrency(totalCost - totalBudget)} (${Math.round((
);
};
export default ChantiersTerminesPage;
export default ChantiersTerminesPage;