Skip to content
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

myHealth - smoother immunizations info (fixes #8126) #8129

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/health/health-event.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ <h4 class="full-width primary-text-color" i18n>Condition and Treatment</h4>
<planet-markdown-textbox i18n-placeholder placeholder="Medications" [formControl]="healthForm.controls.medications"></planet-markdown-textbox>
</mat-form-field>
<mat-form-field class="full-width mat-form-field-type-no-underline">
<planet-markdown-textbox i18n-placeholder placeholder="Immunization Dates" [formControl]="healthForm.controls.immunizations"></planet-markdown-textbox>
<planet-markdown-textbox i18n-placeholder placeholder="Immunizations" [formControl]="healthForm.controls.immunizations"></planet-markdown-textbox>
</mat-form-field>
<mat-form-field class="full-width mat-form-field-type-no-underline">
<planet-markdown-textbox i18n-placeholder placeholder="X-rays" [formControl]="healthForm.controls.xrays"></planet-markdown-textbox>
Expand Down
3 changes: 3 additions & 0 deletions src/app/health/health-update.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@
<mat-form-field class="full-width mat-form-field-type-no-underline">
<planet-markdown-textbox i18n-placeholder placeholder="Allergies" [formControl]="healthForm.controls.allergies"></planet-markdown-textbox>
</mat-form-field>
<mat-form-field class="full-width mat-form-field-type-no-underline">
<planet-markdown-textbox i18n-placeholder placeholder="Immunization Dates" [formControl]="healthForm.controls.immunizations"></planet-markdown-textbox>
</mat-form-field>
<mat-form-field class="full-width mat-form-field-type-no-underline">
<planet-markdown-textbox i18n-placeholder placeholder="Other Notes" [formControl]="healthForm.controls.notes"></planet-markdown-textbox>
</mat-form-field>
Expand Down
1 change: 1 addition & 0 deletions src/app/health/health-update.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ export class HealthUpdateComponent implements OnInit {
emergencyContactType: '',
emergencyContact: '',
specialNeeds: '',
immunizations: '',
allergies: '',
notes: ''
});
Expand Down
6 changes: 6 additions & 0 deletions src/app/health/health.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,12 @@ <h4 class="primary-text-color" i18n>Allergies</h4>
<td-markdown [content]="healthDetail?.allergies || 'N/A'"></td-markdown>
</div>
<mat-divider></mat-divider>
<div class="full-width">
<div>
<h4 class="primary-text-color" i18n>Immunization Dates</h4>
<td-markdown [content]="healthDetail?.immunizations || 'N/A'"></td-markdown>
</div>
<mat-divider></mat-divider>
</div>
<div class="full-width">
<div>
Expand Down
Loading