aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorzaultavangar <zaul_tavangar@brown.edu>2023-12-17 20:16:01 -0500
committerzaultavangar <zaul_tavangar@brown.edu>2023-12-17 20:16:01 -0500
commit87c30ed34eb7c51da9b6d051e2989c2213644595 (patch)
tree6274121049e73a9bda65e2ace8e739b74cd43ac0 /src
parent6e78d5d0bf88d25db48a82e498fe0193dc9baedf (diff)
adding some unsaved code from CollectionCalendarView
Diffstat (limited to 'src')
-rw-r--r--src/client/views/collections/CollectionCalendarView.tsx8
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}