Skip to content
Prev Previous commit
Next Next commit
Merge branch 'master' of https://github.com/ioet/time-tracker-ui into…
… TimeClock-find-project-#3
  • Loading branch information
daros10 committed Mar 27, 2020
commit de4fbd63d0228c09a411cc49da54a23e947ca808
6 changes: 5 additions & 1 deletion src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ import { EmptyStateComponent } from './components/shared/empty-state/empty-state
import { GroupByDatePipe } from './components/shared/pipes/group-by-date/group-by-date.pipe';
import { SearchProjectComponent } from './components/shared/search-project/search-project.component';
import { FilterProjectPipe } from './components/shared/pipes/filter-project/filter-project.pipe';

// tslint:disable-next-line:max-line-length
import { ActivitiesManagementComponent } from './components/options-sidebar/activities/activities-management/activities-management.component';

@NgModule({
declarations: [
Expand All @@ -48,6 +49,9 @@ import { FilterProjectPipe } from './components/shared/pipes/filter-project/filt
GroupByDatePipe,
SearchProjectComponent,
FilterProjectPipe
ActivitiesManagementComponent,
CreateActivityComponent,
ActivityListComponent
],
imports: [
CommonModule,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<app-create-project class="item" [projectToEdit]="project" (savedProject)="updateProject($event)" (cancelForm)="cancelForm()">
</app-create-project>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please, fix the indentation, remember that we are using an indentation based in 2 spaces.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done



<app-project-list class="item" [projects]="projects" (editProject)="editProject($event)" (deleteProject)="deleteProject($event)">
</app-project-list>
</div>
You are viewing a condensed version of this merge commit. You can view the full changes here.