fix: Change Button size from 'normal' to 'small' in phases-chantier/retard/page.tsx

This commit is contained in:
dahoud
2025-10-15 20:06:40 +00:00
parent aed2ce0182
commit bd3c342acd

View File

@@ -138,7 +138,7 @@ const PhasesEnRetardPage: Page = () => {
severity="warning"
onClick={() => relancerPhase(rowData)}
tooltip="Relancer la phase"
size="normal"
size="small"
/>
<Button
icon="pi pi-calendar"
@@ -146,7 +146,7 @@ const PhasesEnRetardPage: Page = () => {
severity="info"
onClick={() => replanifierPhase(rowData)}
tooltip="Replanifier"
size="normal"
size="small"
/>
<Button
icon="pi pi-exclamation-triangle"
@@ -154,7 +154,7 @@ const PhasesEnRetardPage: Page = () => {
severity="danger"
onClick={() => escaladerPhase(rowData)}
tooltip="Escalader"
size="normal"
size="small"
/>
</div>
);