From: Adam Dullage Date: Sat, 4 May 2024 08:19:42 +0000 (+0100) Subject: Disable usage statistics in ToastEditor and ToastViewer components X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=e290ef9d721af78feef449f2ca9117750b120943;p=flatnotes.git Disable usage statistics in ToastEditor and ToastViewer components --- diff --git a/client/components/toastui/ToastEditor.vue b/client/components/toastui/ToastEditor.vue index 056f5c1..0479cad 100644 --- a/client/components/toastui/ToastEditor.vue +++ b/client/components/toastui/ToastEditor.vue @@ -20,6 +20,7 @@ onMounted(() => { height: "100%", initialValue: props.initialValue, plugins: [codeSyntaxHighlight], + usageStatistics: false, }); }); diff --git a/client/components/toastui/ToastViewer.vue b/client/components/toastui/ToastViewer.vue index bf618ee..a595f29 100644 --- a/client/components/toastui/ToastViewer.vue +++ b/client/components/toastui/ToastViewer.vue @@ -18,6 +18,7 @@ onMounted(() => { el: viewerElement.value, initialValue: props.initialValue, plugins: [codeSyntaxHighlight], + usageStatistics: false, }); });