chore(frontend): remove label-select util stub
This commit is contained in:
parent
1236b13759
commit
fca96bfae8
@ -1,32 +0,0 @@
|
||||
import { Utility } from '../../core/utility';
|
||||
|
||||
import './label-select.sass';
|
||||
|
||||
|
||||
@Utility({
|
||||
selector: '.uw-label-select',
|
||||
})
|
||||
export class LabelSelect {
|
||||
|
||||
_element;
|
||||
_app;
|
||||
|
||||
constructor(element, app) {
|
||||
if (!element) {
|
||||
throw new Error('LabelSelect utility cannot be setup without an element!');
|
||||
}
|
||||
|
||||
if (!app) {
|
||||
throw new Error('LabelSelect utility cannot be setup without an app!');
|
||||
}
|
||||
|
||||
this._element = element;
|
||||
this._app = app;
|
||||
}
|
||||
|
||||
// TODO cleanUp event manager etc.
|
||||
destroy() {
|
||||
console.log('TODO LabelSelect destroy');
|
||||
}
|
||||
|
||||
}
|
||||
@ -15,7 +15,6 @@ import { PageActionsUtils } from './pageactions/pageactions';
|
||||
import { HideColumns } from './hide-columns/hide-columns';
|
||||
import { ExamCorrect } from './exam-correct/exam-correct';
|
||||
import { SortTable } from './sort-table/sort-table';
|
||||
import { LabelSelect } from './label-select/label-select';
|
||||
|
||||
export const Utils = [
|
||||
Alerts,
|
||||
@ -36,5 +35,4 @@ export const Utils = [
|
||||
HideColumns,
|
||||
ExamCorrect,
|
||||
SortTable,
|
||||
LabelSelect,
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user