webapp: Fix lint error

This commit is contained in:
Thomas Basler 2022-12-24 00:14:01 +01:00
parent 097e884658
commit f364aa7559

View File

@ -1,7 +1,7 @@
import { Tooltip } from 'bootstrap' import { Tooltip } from 'bootstrap';
export const tooltip = { export const tooltip = {
mounted(el: HTMLElement) { mounted(el: HTMLElement) {
const tooltip = new Tooltip(el) new Tooltip(el);
} }
} }