diff options
author | bob <bcz@cs.brown.edu> | 2019-03-15 13:30:22 -0400 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-03-15 13:30:22 -0400 |
commit | 487a74d28501cbdc86f0d02fef656754ed22ae19 (patch) | |
tree | 884258eb69515752925186572681300a4945d54d /src/client/views/EditableView.tsx | |
parent | c17605b4d1fe04429b029ff5a161f31ce19f5fd4 (diff) |
fixed various issues with schema/videos
Diffstat (limited to 'src/client/views/EditableView.tsx')
-rw-r--r-- | src/client/views/EditableView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/EditableView.tsx b/src/client/views/EditableView.tsx index 757bfeae6..3b54c0dbb 100644 --- a/src/client/views/EditableView.tsx +++ b/src/client/views/EditableView.tsx @@ -50,7 +50,7 @@ export class EditableView extends React.Component<EditableProps> { style={{ display: "inline" }}></input> } else { return ( - <div className="editableView-container-editing" style={{ display: "inline", height: "100%", maxHeight: `${this.props.height}` }} + <div className="editableView-container-editing" style={{ display: "inline", height: "auto", maxHeight: `${this.props.height}` }} onClick={action(() => this.editing = true)}> {this.props.contents} </div> |