From f364aa7559a0673cb2fe5d9c29aa321868f1fbe2 Mon Sep 17 00:00:00 2001 From: Thomas Basler Date: Sat, 24 Dec 2022 00:14:01 +0100 Subject: [PATCH] webapp: Fix lint error --- webapp/src/plugins/bootstrap.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webapp/src/plugins/bootstrap.ts b/webapp/src/plugins/bootstrap.ts index 2e7f34a..ca00065 100644 --- a/webapp/src/plugins/bootstrap.ts +++ b/webapp/src/plugins/bootstrap.ts @@ -1,7 +1,7 @@ -import { Tooltip } from 'bootstrap' +import { Tooltip } from 'bootstrap'; export const tooltip = { mounted(el: HTMLElement) { - const tooltip = new Tooltip(el) + new Tooltip(el); } } \ No newline at end of file