-
Notifications
You must be signed in to change notification settings - Fork 4
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
Feature/#414 #433
Feature/#414 #433
Conversation
src/app/app.module.ts
Outdated
@@ -52,7 +57,7 @@ import { NavigationState } from './shared/store/navigation.state'; | |||
RegistrationModule, | |||
], | |||
providers: [ | |||
|
|||
{ provide: LOCALE_ID, useValue: "uk" } |
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.
we use single quotes in ts
* This method get applications by status | ||
* @param status | ||
*/ | ||
getApplicationsByStatus(status: number): Observable<Application[]> { |
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.
indentations
@@ -58,4 +79,44 @@ | |||
&-hidden{ | |||
visibility: hidden; | |||
} | |||
} | |||
.person-text, .workshop-name-text{ | |||
font-family: Innerspace; |
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.
indentations
MatIconModule | ||
], | ||
providers: [ | ||
{ provide: LOCALE_ID, useValue: "uk" }, |
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.
single quotes
@@ -80,7 +89,13 @@ export abstract class CabinetDataComponent implements OnInit, OnDestroy { | |||
this.store.dispatch(new GetApplicationsByProviderId(this.provider.id)); | |||
} | |||
|
|||
getApplicationsByStatus(): void { | |||
console.log(this.status); |
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 console logs
<h5>{{ application.child.firstName }} {{ application.child.lastName }} {{ application.child.middleName }}</h5> | ||
<p class="card-text">Дата народження: {{ application.child.dateOfBirth | date: 'shortDate'}}</p> | ||
<p class="card-text">Дата подання заявки: {{ application.creationTime | date: 'shortDate' }}</p> | ||
<div class="first-column" fxLayout='column' fxLayoutAlign='start start' > |
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.
it is a little bit confusing to see first-column class and id set to different elements. could you please check if we still need this?
@@ -1,10 +1,15 @@ | |||
|
|||
// .first-column{ |
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 or add todo to commented code
visibility: hidden; | ||
} | ||
} | ||
.person-text, .workshop-name-text { | ||
font-family: Innerspace; |
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.
please fix indentations
#414