-
Notifications
You must be signed in to change notification settings - Fork 1
78 customer administration screens #101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Codecov Report
@@ Coverage Diff @@
## master #101 +/- ##
==========================================
- Coverage 92.55% 91.96% -0.59%
==========================================
Files 37 43 +6
Lines 403 386 -17
Branches 23 21 -2
==========================================
- Hits 373 355 -18
- Misses 25 26 +1
Partials 5 5
Continue to review full report at Codecov.
|
src/app/app-routing.module.ts
Outdated
children: [ | ||
{ path: 'reports', component: ReportsComponent }, | ||
{ path: 'time-clock', component: TimeClockComponent }, | ||
{ path: 'time-entries', component: TimeEntriesComponent }, | ||
{ path: 'project-management', component: ProjectManagementComponent }, | ||
{ path: 'activities-management', component: ActivitiesManagementComponent }, | ||
{path: '', pathMatch: 'full', redirectTo: 'time-clock'}, | ||
] | ||
{ path: 'customer', component: CustomerComponent }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
path: 'customers-management'
src/app/app.module.ts
Outdated
import { ManagmentCustomerProjectsComponent } from './modules/customer-managment/components/managment-customer-projects/managment-customer-projects.component'; | ||
import { CreateCustomerComponent } from './modules/customer-managment/components/customer-info/components/create-customer/create-customer'; | ||
// tslint:disable-next-line: max-line-length | ||
import { CreateeProjectComponent } from './modules/customer-managment/components/projects/components/create-project/createe-project.component'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo Createe
src/app/app.module.ts
Outdated
import { CreateCustomerComponent } from './modules/customer-managment/components/customer-info/components/create-customer/create-customer'; | ||
// tslint:disable-next-line: max-line-length | ||
import { CreateeProjectComponent } from './modules/customer-managment/components/projects/components/create-project/createe-project.component'; | ||
import { ProjectLiistComponent } from './modules/customer-managment/components/projects/components/project-liist/project-liist.component'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo: Liist
src/app/app.module.ts
Outdated
CreateeProjectComponent, | ||
ProjectLiistComponent, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typos
fixture.detectChanges(); | ||
}); | ||
|
||
it('should create', () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not should create but
it('component should be created', () => {
export class SearchComponent implements OnInit { | ||
constructor() {} | ||
|
||
ngOnInit(): void {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove this
.btn-primary { | ||
background-image: $button-primary-color; | ||
border: transparent; | ||
} | ||
|
||
.btn-hover:hover { | ||
opacity: 0.8; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you don't need this
fixture.detectChanges(); | ||
}); | ||
|
||
it('should create', () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
component should be created
|
||
constructor() {} | ||
|
||
ngOnInit(): void {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove
{ route: '/reports', icon: 'fas fa-chart-pie', text: 'Reports' }, | ||
{ route: '/project-management', icon: 'far fa-folder-open', text: 'Projects' }, | ||
{ route: '/activities-management', icon: 'far fa-file-alt', text: 'Activities' }, | ||
{ route: '/customer', icon: 'fas fa-users-cog', text: 'Customer' }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let;s change this to customers-managent
…om/ioet/time-tracker-ui into 78-customers-administration-screen
PR related to issue #78.