From d271691b6e439eb7551fee81c5ae95f645a1cdce Mon Sep 17 00:00:00 2001 From: Julien Veyssier Date: Fri, 4 Oct 2024 15:02:27 +0200 Subject: [PATCH] nothing Signed-off-by: Julien Veyssier --- src/dashboardPending.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/dashboardPending.js b/src/dashboardPending.js index 1ad0ee94..38b8173d 100644 --- a/src/dashboardPending.js +++ b/src/dashboardPending.js @@ -18,12 +18,10 @@ import './bootstrap.js' import DashboardPending from './views/DashboardPending.vue' document.addEventListener('DOMContentLoaded', function() { - OCA.Dashboard.register('approval_pending', (el, { widget }) => { const View = Vue.extend(DashboardPending) new View({ propsData: { title: widget.title }, }).$mount(el) }) - })