diff --git a/airtime_mvc/public/js/airtime/schedule/full-calendar-functions.js b/airtime_mvc/public/js/airtime/schedule/full-calendar-functions.js
index db5eadd53..be42c53b7 100644
--- a/airtime_mvc/public/js/airtime/schedule/full-calendar-functions.js
+++ b/airtime_mvc/public/js/airtime/schedule/full-calendar-functions.js
@@ -283,6 +283,12 @@ function eventRender(event, element, view) {
.find(".fc-event-time")
.before('');
}
+ } else {
+ if (event.linked) {
+ $(element)
+ .find(".fc-event-time")
+ .before('');
+ }
}
} else if (view.name === 'month') {
if (event.show_empty === 1) {
@@ -305,6 +311,12 @@ function eventRender(event, element, view) {
.find(".fc-event-title")
.after('');
}
+ } else {
+ if (event.linked) {
+ $(element)
+ .find(".fc-event-title")
+ .after('');
+ }
}
}
}