From cc5e5a19fceafe9109ebe19278c54ed0b88299f4 Mon Sep 17 00:00:00 2001 From: lights0123 Date: Sun, 22 Nov 2020 13:34:55 -0500 Subject: [PATCH] Fix build --- web/pages/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/pages/index.vue b/web/pages/index.vue index ddf2670..4865add 100644 --- a/web/pages/index.vue +++ b/web/pages/index.vue @@ -176,7 +176,7 @@ export default class Home extends Vue { } copyLogs() { - navigator.clipboard.writeText(this.calculator?.log).catch(alert); + navigator.clipboard.writeText((this.calculator as any)?.log).catch(alert); } }