aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/PropertiesButtons.tsx
diff options
context:
space:
mode:
authorljungster <parkerljung@gmail.com>2022-03-12 07:44:01 -0500
committerljungster <parkerljung@gmail.com>2022-03-12 07:44:01 -0500
commit2c565fd81daca02cabb9598c699cedb7611c3841 (patch)
tree3601c8e3ad80c4becced111f4e8e1c6d674fce11 /src/client/views/PropertiesButtons.tsx
parent1cf7bf9b1a18728eb07950a3f4eafa793e830834 (diff)
attempting to add note-taking
I think this has something to do with the view not being rendered in novice mode. Assuming this is an issue in CollectionMenu.tsx. Essentially what I did was add a note-taking view wherever I found a stacking view (via global search)
Diffstat (limited to 'src/client/views/PropertiesButtons.tsx')
-rw-r--r--src/client/views/PropertiesButtons.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/PropertiesButtons.tsx b/src/client/views/PropertiesButtons.tsx
index f9dab9f82..3cb57fc7c 100644
--- a/src/client/views/PropertiesButtons.tsx
+++ b/src/client/views/PropertiesButtons.tsx
@@ -208,7 +208,8 @@ export class PropertiesButtons extends React.Component<{}, {}> {
const isInk = layoutField instanceof InkField;
const isMap = this.selectedDoc?.type === DocumentType.MAP;
const isCollection = this.selectedDoc?.type === DocumentType.COL;
- const isStacking = this.selectedDoc?._viewType === CollectionViewType.Stacking;
+ //TODO: will likely need to create separate note-taking view type here
+ const isStacking = this.selectedDoc?._viewType === CollectionViewType.Stacking || this.selectedDoc?._viewType === CollectionViewType.NoteTaking;
const isFreeForm = this.selectedDoc?._viewType === CollectionViewType.Freeform;
const isTree = this.selectedDoc?._viewType === CollectionViewType.Tree;
const isTabView = this.selectedTabView;