[#189] added custom event chip (#262)

Co-authored-by: Camille Moussu <cmoussu@linagora.com>
This commit is contained in:
Camille Moussu
2025-10-31 11:50:22 +01:00
committed by GitHub
parent 39d8085766
commit ec7230fa94
14 changed files with 689 additions and 218 deletions
@@ -564,6 +564,10 @@ export default function EventPreviewModal({
</Box>
}
text={event.location}
style={{
fontSize: "16px",
fontFamily: "'Inter', sans-serif",
}}
/>
)}
{/* Description */}
@@ -575,6 +579,10 @@ export default function EventPreviewModal({
</Box>
}
text={event.description}
style={{
fontSize: "16px",
fontFamily: "'Inter', sans-serif",
}}
/>
)}
{/* ALARM */}
@@ -586,6 +594,10 @@ export default function EventPreviewModal({
</Box>
}
text={`${event.alarm.trigger} before by ${event.alarm.action}`}
style={{
fontSize: "16px",
fontFamily: "'Inter', sans-serif",
}}
/>
)}
{/* Repetition */}
@@ -597,6 +609,10 @@ export default function EventPreviewModal({
</Box>
}
text={makeRecurrenceString(event)}
style={{
fontSize: "16px",
fontFamily: "'Inter', sans-serif",
}}
/>
)}
</>
@@ -633,6 +649,10 @@ export default function EventPreviewModal({
</Box>
}
text={event.error}
style={{
fontSize: "16px",
fontFamily: "'Inter', sans-serif",
}}
error
/>
)}