UI: forces full height of calendar on upcoming events (#630)
This commit is contained in:
parent
6a918390a5
commit
223697e880
|
|
@ -45,6 +45,7 @@ export default Component.extend({
|
|||
this._loadCalendar().then(() => {
|
||||
const fullCalendar = new window.FullCalendar.Calendar(calendarNode, {
|
||||
...fullCalendarDefaultOptions(),
|
||||
height: "parent",
|
||||
eventPositioned: (info) => {
|
||||
if (siteSettings.events_max_rows === 0) {
|
||||
return;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
.discourse-post-event-upcoming-events {
|
||||
height: 100%;
|
||||
.upcoming-events-table {
|
||||
width: 100%;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue