diff --git a/modules/monitor/front/index/index.js b/modules/monitor/front/index/index.js index 9be66d6d8..4807cf1c9 100644 --- a/modules/monitor/front/index/index.js +++ b/modules/monitor/front/index/index.js @@ -1,18 +1,8 @@ import ngModule from '../module'; import Section from 'salix/components/section'; import './style.scss'; -export default class Controller extends Section { - openSummary(supplier, event) { - if (event.defaultPrevented) return; - event.preventDefault(); - event.stopPropagation(); - - this.supplierSelected = supplier; - this.$.dialogSummarySupplier.show(); - } -} ngModule.vnComponent('vnMonitorIndex', { template: require('./index.html'), - controller: Controller + controller: Section });