aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/objects/CopyLinkPopover.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/objects/CopyLinkPopover.js')
-rw-r--r--frontend/src/components/objects/CopyLinkPopover.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/components/objects/CopyLinkPopover.js b/frontend/src/components/objects/CopyLinkPopover.js
index fa9266f..b951603 100644
--- a/frontend/src/components/objects/CopyLinkPopover.js
+++ b/frontend/src/components/objects/CopyLinkPopover.js
@@ -37,10 +37,10 @@ class CopyLinkPopover extends Component {
};
render() {
- const copyPopoverContent = <div style={{"width": "400px"}}>
+ const copyPopoverContent = <div style={{"width": "250px"}}>
{this.state.copiedMessage ? <span><strong>Copied!</strong></span> :
<span>Click to <strong>copy</strong></span>}
- <TextField readonly rows={1} value={this.props.value} textRef={this.copyTextarea}/>
+ <TextField readonly rows={2} value={this.props.value} textRef={this.copyTextarea}/>
</div>;
return (