From 5c9e8b8b0c13514b6ed8f94c5781dc0e834eb8d5 Mon Sep 17 00:00:00 2001 From: kolaente Date: Thu, 6 Aug 2020 12:28:41 +0200 Subject: [PATCH] Prevent rendering html in tooltips --- src/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.js b/src/main.js index 89f6408b9..3b867a928 100644 --- a/src/main.js +++ b/src/main.js @@ -122,7 +122,7 @@ Vue.component('icon', FontAwesomeIcon) // Tooltip import VTooltip from 'v-tooltip' -Vue.use(VTooltip) +Vue.use(VTooltip, {defaultHtml: false}) // PWA import './registerServiceWorker'