diff options
| author | bobzel <zzzman@gmail.com> | 2024-09-06 15:49:33 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-09-06 15:49:33 -0400 |
| commit | f569f3bfd7aca43479e76f8c5bd88192bc113a25 (patch) | |
| tree | a2e178a07aafb3ebcdb66258c1cee018485907a7 /src/client/views/collections/CollectionCalendarView.tsx | |
| parent | 85734663ec1c65678c4e292ddbdf63ae02b47476 (diff) | |
| parent | 950651b904f9bb6843f15eda1322025e84015f3c (diff) | |
Merge branch 'master' into alyssa-starter
Diffstat (limited to 'src/client/views/collections/CollectionCalendarView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionCalendarView.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/collections/CollectionCalendarView.tsx b/src/client/views/collections/CollectionCalendarView.tsx index 9eb16917b..30fd9fc2b 100644 --- a/src/client/views/collections/CollectionCalendarView.tsx +++ b/src/client/views/collections/CollectionCalendarView.tsx @@ -38,8 +38,8 @@ export class CollectionCalendarView extends CollectionSubView() { const aDateRangeStr = StrCast(DocListCast(calendarA.data).lastElement()?.date_range); const bDateRangeStr = StrCast(DocListCast(calendarB.data).lastElement()?.date_range); - const [aFromDate, aToDate] = dateRangeStrToDates(aDateRangeStr); - const [bFromDate, bToDate] = dateRangeStrToDates(bDateRangeStr); + const { start: aFromDate, end: aToDate } = dateRangeStrToDates(aDateRangeStr); + const { start: bFromDate, end: bToDate } = dateRangeStrToDates(bDateRangeStr); if (aFromDate > bFromDate) { return -1; // a comes first |
