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); } }