# Event time on monthly view is cut short

**URL:** https://meta.discourse.org/t/event-time-on-monthly-view-is-cut-short/387860
**Category:** Feature
**Tags:** events
**Created:** [7 בנובמבר,‏ 2025,‏ 11:59am UTC](https://meta.discourse.org/t/event-time-on-monthly-view-is-cut-short/387860 "2025-11-07T11:59:27Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![sam](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/sam/32/102149_2.png) [@sam](https://meta.discourse.org/u/sam)
#### Post date: [10 בנובמבר,‏ 2025,‏ 3:15am UTC](https://meta.discourse.org/t/event-time-on-monthly-view-is-cut-short/387860/2 "2025-11-10T03:15:22Z")

</div>

Moving this to feature and would like some tips from @lindsey

The fix here is pretty trivial:

```diff
diff --git a/plugins/discourse-calendar/assets/javascripts/discourse/components/full-calendar.gjs b/plugins/discourse-calendar/assets/javascripts/discourse/components/full-calendar.gjs
index 79940a66ba..22b9306052 100644
--- a/plugins/discourse-calendar/assets/javascripts/discourse/components/full-calendar.gjs
+++ b/plugins/discourse-calendar/assets/javascripts/discourse/components/full-calendar.gjs
@@ -79,6 +79,11 @@ export default class FullCalendar extends Component {
       timeZone: this.currentUser?.user_option?.timezone || "local",
       firstDay: this.firstDayOfWeek,
       displayEventTime: true,
+ eventTimeFormat: {
+ hour: "numeric",
+ minute: "2-digit",
+ meridiem: "short",
+ },
       weekends: this.args.weekends ?? true,
       initialDate: this.args.initialDate,
       height: this.args.height ?? "100%",

```

But full calendar is deliberate about conserving space with meridiem `narrow`

Can we afford the extra space here? Is it worth it?

---

_[View the full topic](https://meta.discourse.org/t/event-time-on-monthly-view-is-cut-short/387860)._
