mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-13 05:10:59 +00:00
Fixed calendar widget entries showin in wrong order
This commit is contained in:
parent
807fe267dc
commit
5ac3766a63
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ class GoogleCalendar
|
|||
list = result
|
||||
end
|
||||
}
|
||||
@events = (list) ? list.items : nil
|
||||
@events = (list) ? list.items.sort_by { |event| event.start.date_time } : nil
|
||||
end
|
||||
|
||||
def nsltv_regex
|
||||
|
|
Loading…
Reference in a new issue