diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/collections/CollectionCalendarView.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/views/collections/CollectionCalendarView.tsx b/src/client/views/collections/CollectionCalendarView.tsx index f94d05c61..f28154486 100644 --- a/src/client/views/collections/CollectionCalendarView.tsx +++ b/src/client/views/collections/CollectionCalendarView.tsx @@ -46,11 +46,11 @@ export class CollectionCalendarView extends CollectionSubView(){ _stackRef = React.createRef<CollectionStackingView>(); panelHeight = () => { - return 0; // a standard height for all calendars; TODO: change + return 0; // TODO: change } panelWidth = () => { - return 0; //a standard width for all calendars; TODO: change + return 0; // TODO: change } // most recent calendar should come first @@ -96,8 +96,8 @@ export class CollectionCalendarView extends CollectionSubView(){ <CollectionStackingView {...this._props} setContentView={emptyFunction} - // NativeWidth={} - // NativeHeight={returnZero} + NativeWidth={} + NativeHeight={} ref={this._stackRef} PanelHeight={this.panelHeight} PanelWidth={this.panelWidth} |