fix: Remove size prop from Tag components

This commit is contained in:
dahoud
2025-10-15 21:15:05 +00:00
parent d537b0c1c2
commit b5916fbe35

View File

@@ -695,15 +695,13 @@ const CalendrierPlanningPage = () => {
`${formatDateTime(event.start)} - ${formatDateTime(event.end)}`}
</div>
<div className="flex gap-1">
<Tag
value={typeBodyTemplate(event).props.children[1]}
severity="info"
size="normal"
<Tag
value={typeBodyTemplate(event).props.children[1]}
severity="info"
/>
<Tag
value={priorityBodyTemplate(event).props.value}
severity={priorityBodyTemplate(event).props.severity}
size="normal"
<Tag
value={priorityBodyTemplate(event).props.value}
severity={priorityBodyTemplate(event).props.severity}
/>
</div>
</div>