chore(frontend): remove label-select util stub

This commit is contained in:
Sarah Vaupel 2022-01-22 01:41:52 +01:00
parent 1236b13759
commit fca96bfae8
3 changed files with 0 additions and 34 deletions

View File

@ -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');
}
}

View File

@ -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,
];