diff options
| author | bob <bcz@cs.brown.edu> | 2020-02-20 15:59:53 -0500 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2020-02-20 15:59:53 -0500 |
| commit | 6e5abc3052f4df09b156deccdfe6a7b0b62f492b (patch) | |
| tree | cb90cac3ed45ee8154afd2e95d3e39bdf97e44cd /src/client/views/collections/CollectionSchemaView.tsx | |
| parent | 7a7105d8867e4b1c91e020f54dc8e9b3be563587 (diff) | |
cleaned up a whole bunch of linking stuff. link menu / link types / link default behaviors / added LinkBox
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 7dee7f18f..9486d195a 100644 --- a/src/client/views/collections/CollectionSchemaView.tsx +++ b/src/client/views/collections/CollectionSchemaView.tsx @@ -408,7 +408,8 @@ export class SchemaTable extends React.Component<SchemaTableProps> { rowInfo, 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 + rowWrapped: this.textWrappedRows.findIndex(id => rowInfo.original[Id] === id) > -1, + dropAction: StrCast(this.props.Document.childDropAction) }; } |
