Removed unnessecary imports and prettified
This commit is contained in:
parent
3874a34489
commit
afcc86009d
@ -11,7 +11,6 @@ import { TaskFormComponent } from '../../task-form/task-form.component';
|
|||||||
import { TableComponentBase } from '../table-component.base';
|
import { TableComponentBase } from '../table-component.base';
|
||||||
import { ActivatedRoute, ParamMap, Router } from '@angular/router';
|
import { ActivatedRoute, ParamMap, Router } from '@angular/router';
|
||||||
import { getNumberForPriority } from '../../../services/sorting.service';
|
import { getNumberForPriority } from '../../../services/sorting.service';
|
||||||
import { NONE_TYPE } from '@angular/compiler';
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-task-table',
|
selector: 'app-task-table',
|
||||||
@ -34,7 +33,7 @@ export class TaskTableComponent extends TableComponentBase<ScrumTask> {
|
|||||||
constructor(
|
constructor(
|
||||||
private backendService: BackendService,
|
private backendService: BackendService,
|
||||||
private modalService: NgbModal,
|
private modalService: NgbModal,
|
||||||
protected route: ActivatedRoute,
|
protected route: ActivatedRoute
|
||||||
) {
|
) {
|
||||||
super(route);
|
super(route);
|
||||||
|
|
||||||
@ -177,7 +176,6 @@ export class TaskTableComponent extends TableComponentBase<ScrumTask> {
|
|||||||
}
|
}
|
||||||
//#endregion sorters
|
//#endregion sorters
|
||||||
|
|
||||||
|
|
||||||
//#region modals
|
//#region modals
|
||||||
/**
|
/**
|
||||||
* Opens a TaskForm popup for editing a existing task or creating a new one.
|
* Opens a TaskForm popup for editing a existing task or creating a new one.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user