diff options
author | bob <bcz@cs.brown.edu> | 2019-07-23 18:00:52 -0400 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-07-23 18:00:52 -0400 |
commit | 86971952237b8bd01a23b52db662740126bd8477 (patch) | |
tree | e7b95f8e68206072c55eb404e1cd6978bce8b618 /src/client/views/EditableView.tsx | |
parent | 97776a0f1725de5b512b803497af0801141c7f73 (diff) |
some fixes for fitToBox, templates, and showTitle
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 f2cdffd38..c66a92f48 100644 --- a/src/client/views/EditableView.tsx +++ b/src/client/views/EditableView.tsx @@ -93,7 +93,7 @@ export class EditableView extends React.Component<EditableProps> { <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 }}>{this.props.contents}</span> + <span style={{ fontStyle: this.props.fontStyle, fontSize: this.props.fontSize }}>{this.props.contents}</span> </div> ); } |