-
Notifications
You must be signed in to change notification settings - Fork 5
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
Add institution type data #1290
Conversation
this.store.dispatch(new GetInstitutionStatus()); | ||
this.institutionStatuses$ | ||
.pipe( | ||
filter((institutionStatuses) => !!institutionStatuses.length), | ||
takeUntil(this.destroy$) |
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.
@@ -1,22 +1,23 @@ | |||
import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core'; | |||
import { Component, EventEmitter, Input, Output, OnInit } from '@angular/core'; |
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 unused imports (output as I see)
@@ -29,6 +30,7 @@ export class ProviderInfoComponent implements OnInit { | |||
readonly ownershipType: typeof OwnershipType = OwnershipType; | |||
readonly ownershipTypeUkr = OwnershipTypeUkr; | |||
readonly providerTypeUkr = ProviderTypeUkr; | |||
readonly institutionTypes = InstitutionTypes; |
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.
add empty row after readonly fields
</mat-select> | ||
</mat-form-field> | ||
|
||
|
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 empty row please
}); | ||
} | ||
|
||
ngOnInit(): void { | ||
this.store.dispatch(new GetInstitutionStatus()); | ||
this.provider && this.activateEditMode(); | ||
this.passPhotoFormGroup.emit(this.PhotoFormGroup); | ||
console.log(this.PhotoFormGroup) |
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
[Sp cabinet] "Тип закладу" block is missing in the description of institution #977
['Редагування закладу' page] 'Тип закладу' drop-down box is not displayed #901