From cd62e90ddb3af31afd79466e462a10f4fd8e5648 Mon Sep 17 00:00:00 2001 From: Brian Rogers Date: Thu, 14 Apr 2022 11:15:08 -0600 Subject: [PATCH] got the clipboard copy working --- src/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index 08768e2..1b7b75a 100644 --- a/src/App.vue +++ b/src/App.vue @@ -227,7 +227,7 @@ export default defineComponent({ } function updateClipboard (text) { - clipboard.writeText(text).then(() => { + navigator.clipboard.writeText(text).then(() => { showErrorMessage = false showStatusMessage = true setTimeout(() => {