Skip to content

Commit

Permalink
Some fixes with spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaVR committed Feb 24, 2019
1 parent c30840b commit ff05f87
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
8 changes: 4 additions & 4 deletions src/components/schools/SchoolInternshipSummaryModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -161,11 +161,11 @@ class SchoolInternshipSummaryModal extends React.Component<SchoolInternshipSumma
<b>Totalen voor geselecteerde periode</b>:
</p>
<p>
&nbsp;<b>{totalStudentsCount}</b> {totalStudentsCount === 1 ? "student" : "studenten"},
&nbsp;<b>{totalInternshipDaysCount}</b> {totalInternshipDaysCount === 1 ? "stage dag" : "stage dagen"},
&nbsp;<b>{totalInternshipHoursCount}</b> {totalInternshipHoursCount === 1 ? "stage uur" : "stage uren "}
<b>{totalStudentsCount}</b> {totalStudentsCount === 1 ? "student" : "studenten"},&nbsp;
<b>{totalInternshipDaysCount}</b> {totalInternshipDaysCount === 1 ? "stage dag" : "stage dagen"},&nbsp;
<b>{totalInternshipHoursCount}</b> {totalInternshipHoursCount === 1 ? "stage uur" : "stage uren "}
<Tooltip title={this.renderHoursInformationalTooltip()} mouseEnterDelay={0.5}>
&nbsp;<Icon type="question-circle" />
<Icon type="question-circle" />
</Tooltip>
</p>
</Card>
Expand Down
5 changes: 2 additions & 3 deletions src/components/students/StudentsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class StudentsTable extends React.Component<IStudentsTableProps, IStudentTableSt
onCancel={this.handleClosePlanningDetails}
footer={(
<div className={specificStyles.studentInternshipModalFooter}>
<Popconfirm title="Ben je zeker dat je deze stage wilt verwijderen?" onConfirm={deleteStudentFn}>
<Popconfirm title="Weet u zeker dat u deze stage wilt verwijderen?" onConfirm={deleteStudentFn}>
<Button type="danger" ghost={true} loading={this.state.isDeletingInternship}>Stage verwijderen</Button>
</Popconfirm>
</div>
Expand All @@ -102,8 +102,7 @@ class StudentsTable extends React.Component<IStudentsTableProps, IStudentTableSt
.
</p>
<p>
<b>{internshipNumberOfDays}</b> {internshipNumberOfDays === 1 ? "dag" : "dagen"}
(<b>{internshipNumberOfHours}</b> {internshipNumberOfHours === 1 ? "uur" : "uren"}).
<b>{internshipNumberOfDays}</b> {internshipNumberOfDays === 1 ? "dag" : "dagen"} (<b>{internshipNumberOfHours}</b> {internshipNumberOfHours === 1 ? "uur" : "uren"}).
</p>
</Modal>
</React.Fragment>
Expand Down

1 comment on commit ff05f87

@BenjaVR
Copy link
Owner

@BenjaVR BenjaVR commented on ff05f87 Feb 24, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#61

Please sign in to comment.