Skip to content

Commit 892174c

Browse files
committed
[fix] copy map config style
Signed-off-by: Isaac Brodsky <[email protected]>
1 parent 1412365 commit 892174c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/src/modals/export-map-modal/export-json-map.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const ExportJsonMapUnmemoized = ({config = {}}: ExportJsonPropTypes) => {
7272
<div className="viewer">
7373
<JSONPretty id="json-pretty" json={config} />
7474
<CopyToClipboard text={JSON.stringify(config)} onCopy={() => setCopy(true)}>
75-
<Button width="80px">{copied ? 'Copied!' : 'Copy'}</Button>
75+
<Button width="80px" className="copy-button">{copied ? 'Copied!' : 'Copy'}</Button>
7676
</CopyToClipboard>
7777
</div>
7878
<div className="disclaimer">

0 commit comments

Comments
 (0)