mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-12 21:00:58 +00:00
Fixed calendar widget entries showin in wrong order
This commit is contained in:
parent
0c18e7f9ba
commit
4508e11270
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