diff options
author | bobzel <zzzman@gmail.com> | 2021-03-08 11:06:45 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-03-08 11:06:45 -0500 |
commit | 7b3937698e5b22a84c623680e8c84164268bda8f (patch) | |
tree | 0452cdbc43b4114b496c0fb196eddf55f9d9aae9 | |
parent | 17da55a9b6225ee656aa2eb4dc167dc2d60cba52 (diff) |
from last
-rw-r--r-- | src/client/views/collections/CollectionView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionView.tsx b/src/client/views/collections/CollectionView.tsx index d652bd2a2..857982782 100644 --- a/src/client/views/collections/CollectionView.tsx +++ b/src/client/views/collections/CollectionView.tsx @@ -300,7 +300,7 @@ export class CollectionView extends Touchable<CollectionViewProps> { !Doc.UserDoc().noviceMode && optionItems.push({ description: `${this.props.Document.isInPlaceContainer ? "Unset" : "Set"} inPlace Container`, event: () => this.props.Document.isInPlaceContainer = !this.props.Document.isInPlaceContainer, icon: "project-diagram" }); optionItems.push({ - description: "Create Branch", event: async () => this.props.addDocTab(BranchCreate(this.props.Document), "add:right"), icon: "project-diagram" + description: "Create Branch", event: async () => this.props.addDocTab(await BranchCreate(this.props.Document), "add:right"), icon: "project-diagram" }); optionItems.push({ description: "Pull Master", event: () => BranchTask(this.props.Document, "pull"), icon: "project-diagram" |