Skip to content

Commit

Permalink
Chnage Spelling Mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
Pascal Biermann committed Jul 21, 2022
1 parent db349b6 commit 40da378
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions SmICSWebApp/Pages/WardOverview/WardTableRow.razor
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@
<Tooltip Text="@GetTooltipText()">
@if (Patient.InfectionStatus is not null && Patient.InfectionStatus.Values.Any(x => x.Nosocomial))
{
<span class="text-danger"> @Patient.PatientID</span>
<span class="text-danger"> @Patient.CaseID</span>
}
else if (Patient.InfectionStatus is not null && Patient.InfectionStatus.Values.Any(x => x.Known))
{
<span class="text-primary"> @Patient.PatientID</span>
<span class="text-primary"> @Patient.CaseID</span>
}
else
{
Expand Down Expand Up @@ -126,11 +126,11 @@

if (Patient.CaseAdmission.HasValue)
{
text += Patient.CaseAdmission.Value.Date.ToString("dd.mm.yyyy");
text += Patient.CaseAdmission.Value.Date.ToString("dd.MM.yyyy");
}
if (Patient.CaseDischarge.HasValue)
{
text += " - " + Patient.Discharge.Value.Date.ToString("dd.mm.yyyy");
text += " - " + Patient.Discharge.Value.Date.ToString("dd.MM.yyyy");
}

return text;
Expand Down

0 comments on commit 40da378

Please sign in to comment.