mirror of
https://github.com/apache/superset.git
synced 2026-04-21 17:14:57 +00:00
[sqllab] Added share button to bottom menu (#4584)
* added sharebtn * address comments
This commit is contained in:
committed by
Maxime Beauchemin
parent
d522292b01
commit
c6af4882cd
22
superset/assets/javascripts/SqlLab/components/ShareQuery.jsx
Normal file
22
superset/assets/javascripts/SqlLab/components/ShareQuery.jsx
Normal file
@@ -0,0 +1,22 @@
|
||||
import React from 'react';
|
||||
|
||||
import CopyToClipboard from '../../components/CopyToClipboard';
|
||||
import CopyQueryTabUrl from './CopyQueryTabUrl';
|
||||
import Button from '../../components/Button';
|
||||
import { t } from '../../locales';
|
||||
|
||||
export default class ShareQueryBtn extends CopyQueryTabUrl {
|
||||
render() {
|
||||
return (
|
||||
<CopyToClipboard
|
||||
copyNode={(
|
||||
<Button bsSize="small" className="toggleSave">
|
||||
<i className="fa fa-clipboard" /> {t('Share Query')}
|
||||
</Button>
|
||||
)}
|
||||
tooltipText={t('copy URL to clipboard')}
|
||||
shouldShowText={false}
|
||||
getText={this.getUrl.bind(this)}
|
||||
/>);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user