Merge pull request #311 from tidalcycles/fix-clipboard
fix: copy share link to clipboard was broken for some browers
This commit is contained in:
commit
1cabedc65e
1 changed files with 1 additions and 1 deletions
|
|
@ -219,7 +219,7 @@ function App() {
|
||||||
setLastShared(activeCode || code);
|
setLastShared(activeCode || code);
|
||||||
const shareUrl = window.location.origin + '?' + hash;
|
const shareUrl = window.location.origin + '?' + hash;
|
||||||
// copy shareUrl to clipboard
|
// copy shareUrl to clipboard
|
||||||
navigator.clipboard.writeText(shareUrl);
|
await navigator.clipboard.writeText(shareUrl);
|
||||||
const message = `Link copied to clipboard: ${shareUrl}`;
|
const message = `Link copied to clipboard: ${shareUrl}`;
|
||||||
alert(message);
|
alert(message);
|
||||||
// alert(message);
|
// alert(message);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue