Make entire menuitem clickable for copy query (#1747)

This commit is contained in:
vera-liu
2016-12-05 10:02:23 -08:00
committed by GitHub
parent 76aa9f7e10
commit 89fc9d7c80
3 changed files with 15 additions and 11 deletions

View File

@@ -39,7 +39,11 @@ export default class CopyQueryTabUrl extends React.PureComponent {
<CopyToClipboard
inMenu
text={this.state.shortUrl}
copyNode={<span>share query</span>}
copyNode={(
<div>
<i className="fa fa-clipboard" /> <span>share query</span>
</div>
)}
tooltipText="copy URL to clipboard"
shouldShowText={false}
/>