aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/EditableView.tsx
diff options
context:
space:
mode:
authorFawn <fangrui_tong@brown.edu>2019-07-24 22:39:06 -0400
committerFawn <fangrui_tong@brown.edu>2019-07-24 22:39:06 -0400
commit48adb84b04e1799c5e3ba667b32e5c735bc5377e (patch)
tree5191a6e53e39a38efb24c5192a1958a6d8e02929 /src/client/views/EditableView.tsx
parentf8f3ee8df596758ca6f5f7e735fb1296a676f5b6 (diff)
parentede0719d96cc2551490398caf3e1f41fe7992931 (diff)
merge
Diffstat (limited to 'src/client/views/EditableView.tsx')
-rw-r--r--src/client/views/EditableView.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/EditableView.tsx b/src/client/views/EditableView.tsx
index 31e4557be..1a61e5311 100644
--- a/src/client/views/EditableView.tsx
+++ b/src/client/views/EditableView.tsx
@@ -131,8 +131,8 @@ export class EditableView extends React.Component<EditableProps> {
return (
<div className={`editableView-container-editing${this.props.oneLine ? "-oneLine" : ""}`}
style={{ display: this.props.display, height: "auto", maxHeight: `${this.props.height}` }}
- onClick={this.onClick} >
- <span style={{ fontStyle: this.props.fontStyle, fontSize: this.props.fontSize }}>{this.props.contents}</span>
+ onClick={this.onClick}>
+ <span style={{ fontStyle: this.props.fontStyle }}>{this.props.contents}</span>
</div>
);
}