clean code
This commit is contained in:
parent
7a7292ab32
commit
29aa9c0325
5 changed files with 5 additions and 13 deletions
|
|
@ -6,7 +6,6 @@ import { PrivacyPolicyComponent } from './shared/components/legal-informations/p
|
||||||
import { AddTaskComponent } from './components/add-task/add-task.component';
|
import { AddTaskComponent } from './components/add-task/add-task.component';
|
||||||
import { BoardComponent } from './components/board/board.component';
|
import { BoardComponent } from './components/board/board.component';
|
||||||
import { ContactsComponent } from './components/contacts/contacts.component';
|
import { ContactsComponent } from './components/contacts/contacts.component';
|
||||||
import { OverlayComponent } from './shared/components/overlay/overlay.component';
|
|
||||||
import { TaskOverlayComponent } from './shared/components/overlay/task-overlay/task-overlay.component';
|
import { TaskOverlayComponent } from './shared/components/overlay/task-overlay/task-overlay.component';
|
||||||
import { TaskEditOverlayComponent } from './shared/components/overlay/task-edit-overlay/task-edit-overlay.component';
|
import { TaskEditOverlayComponent } from './shared/components/overlay/task-edit-overlay/task-edit-overlay.component';
|
||||||
import { LoginComponent } from './components/login/login.component';
|
import { LoginComponent } from './components/login/login.component';
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,6 @@
|
||||||
import { CommonModule } from '@angular/common';
|
import { CommonModule } from '@angular/common';
|
||||||
import {
|
import { Component, HostListener, Input, OnInit } from '@angular/core';
|
||||||
AfterViewInit,
|
import { FormsModule, NgForm } from '@angular/forms';
|
||||||
Component,
|
|
||||||
HostListener,
|
|
||||||
Input,
|
|
||||||
OnInit,
|
|
||||||
ViewChild,
|
|
||||||
} from '@angular/core';
|
|
||||||
import { FormsModule, NgForm, NgModel } from '@angular/forms';
|
|
||||||
import { AssignedComponent } from './assigned/assigned.component';
|
import { AssignedComponent } from './assigned/assigned.component';
|
||||||
import { User } from '../../interfaces/user.interface';
|
import { User } from '../../interfaces/user.interface';
|
||||||
import { FirebaseService } from '../../services/firebase.service';
|
import { FirebaseService } from '../../services/firebase.service';
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Component, ElementRef, ViewChild } from '@angular/core';
|
import { Component } from '@angular/core';
|
||||||
import { DragDropService } from '../../services/drag-drop.service';
|
import { DragDropService } from '../../services/drag-drop.service';
|
||||||
import { CommonModule } from '@angular/common';
|
import { CommonModule } from '@angular/common';
|
||||||
import { TaskComponent } from './task/task.component';
|
import { TaskComponent } from './task/task.component';
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
import { CommonModule } from '@angular/common';
|
import { CommonModule } from '@angular/common';
|
||||||
import { Component, Input, OnDestroy, OnInit } from '@angular/core';
|
import { Component, Input } from '@angular/core';
|
||||||
import { DragDropService } from '../../../services/drag-drop.service';
|
import { DragDropService } from '../../../services/drag-drop.service';
|
||||||
import { Task } from '../../../interfaces/task.interface';
|
import { Task } from '../../../interfaces/task.interface';
|
||||||
import { FirebaseService } from '../../../services/firebase.service';
|
import { FirebaseService } from '../../../services/firebase.service';
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Component, EventEmitter, HostListener, Output } from '@angular/core';
|
import { Component, HostListener } from '@angular/core';
|
||||||
import { User } from '../../interfaces/user.interface';
|
import { User } from '../../interfaces/user.interface';
|
||||||
import { CommonModule } from '@angular/common';
|
import { CommonModule } from '@angular/common';
|
||||||
import { ActivatedRoute, RouterLink } from '@angular/router';
|
import { ActivatedRoute, RouterLink } from '@angular/router';
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue