diff options
author | anika-ahluwalia <anika.ahluwalia@gmail.com> | 2020-06-19 17:23:33 -0500 |
---|---|---|
committer | anika-ahluwalia <anika.ahluwalia@gmail.com> | 2020-06-19 17:23:33 -0500 |
commit | 46fa52fa85102d30a3e13a93fb191f12e3e28aa1 (patch) | |
tree | f5cfef51c9aeb87b0541b57d1ac330515f779e16 /src/client/views/collections/CollectionSchemaView.tsx | |
parent | 53f1409dca44d2bad686a3c53cdd9c8bf10e26c9 (diff) |
adding open button and slight change to preview in doc
Diffstat (limited to 'src/client/views/collections/CollectionSchemaView.tsx')
-rw-r--r-- | src/client/views/collections/CollectionSchemaView.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionSchemaView.tsx b/src/client/views/collections/CollectionSchemaView.tsx index 86034376d..81dfc9c62 100644 --- a/src/client/views/collections/CollectionSchemaView.tsx +++ b/src/client/views/collections/CollectionSchemaView.tsx @@ -407,7 +407,8 @@ export class SchemaTable extends React.Component<SchemaTableProps> { rowFocused: !this._headerIsEditing && rowInfo.index === this._focusedCell.row && this.props.isFocused(this.props.Document), textWrapRow: this.toggleTextWrapRow, rowWrapped: this.textWrappedRows.findIndex(id => rowInfo.original[Id] === id) > -1, - dropAction: StrCast(this.props.Document.childDropAction) + dropAction: StrCast(this.props.Document.childDropAction), + addDocTab: this.props.addDocTab }; } |