We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1412365 commit 892174cCopy full SHA for 892174c
src/components/src/modals/export-map-modal/export-json-map.tsx
@@ -72,7 +72,7 @@ const ExportJsonMapUnmemoized = ({config = {}}: ExportJsonPropTypes) => {
72
<div className="viewer">
73
<JSONPretty id="json-pretty" json={config} />
74
<CopyToClipboard text={JSON.stringify(config)} onCopy={() => setCopy(true)}>
75
- <Button width="80px">{copied ? 'Copied!' : 'Copy'}</Button>
+ <Button width="80px" className="copy-button">{copied ? 'Copied!' : 'Copy'}</Button>
76
</CopyToClipboard>
77
</div>
78
<div className="disclaimer">
0 commit comments