aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionTreeView.tsx
diff options
context:
space:
mode:
authorbob <bcz@cs.brown.edu>2019-06-18 13:03:28 -0400
committerbob <bcz@cs.brown.edu>2019-06-18 13:03:28 -0400
commit3a25bad918c72f5d6de9a720de9e0d316c00f2fe (patch)
treebe5cad10de4f5243f387874fc851dcb4c23b1067 /src/client/views/collections/CollectionTreeView.tsx
parentf4fcf306e2579b7479610899a01c06fb157d47de (diff)
fixed issues with expanding text boxes that have a dynamic title
Diffstat (limited to 'src/client/views/collections/CollectionTreeView.tsx')
-rw-r--r--src/client/views/collections/CollectionTreeView.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionTreeView.tsx b/src/client/views/collections/CollectionTreeView.tsx
index 659cb2f28..b13694e9d 100644
--- a/src/client/views/collections/CollectionTreeView.tsx
+++ b/src/client/views/collections/CollectionTreeView.tsx
@@ -314,7 +314,7 @@ export class CollectionTreeView extends CollectionSubView(Document) {
this.onDrop(e, {});
}
render() {
- let dropAction = Cast(this.props.Document.dropAction, "string") as dropActionType;
+ let dropAction = StrCast(this.props.Document.dropAction) as dropActionType;
if (!this.childDocs) {
return (null);
}