aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionDockingView.tsx
diff options
context:
space:
mode:
authoranika-ahluwalia <anika.ahluwalia@gmail.com>2020-06-06 12:48:25 -0500
committeranika-ahluwalia <anika.ahluwalia@gmail.com>2020-06-06 12:48:25 -0500
commit4ac63cedfdfd33b47c97e7cc8be60ec9b5490a3e (patch)
tree8ff1c4a751cade6983ab1c3d2823b22ef57702cf /src/client/views/collections/CollectionDockingView.tsx
parentcb87bab7ea67aa384a3183890ea413965e020047 (diff)
changing { to ( and adding ,
Diffstat (limited to 'src/client/views/collections/CollectionDockingView.tsx')
-rw-r--r--src/client/views/collections/CollectionDockingView.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionDockingView.tsx b/src/client/views/collections/CollectionDockingView.tsx
index 6e27169e2..8c0b0a1c8 100644
--- a/src/client/views/collections/CollectionDockingView.tsx
+++ b/src/client/views/collections/CollectionDockingView.tsx
@@ -860,5 +860,5 @@ export class DockedFrameRenderer extends React.Component<DockedFrameProps> {
}
}
Scripting.addGlobal(function openOnRight(doc: any) { CollectionDockingView.AddRightSplit(doc); },
- "opens up the inputted document on the right side of the screen", "{ doc: any }");
+ "opens up the inputted document on the right side of the screen", "(doc: any)");
Scripting.addGlobal(function useRightSplit(doc: any, shiftKey?: boolean) { CollectionDockingView.UseRightSplit(doc, undefined, shiftKey); });