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) }) - })