Skip to content

Commit

Permalink
resolves: thamara#445
Browse files Browse the repository at this point in the history
  • Loading branch information
jrasmith0 committed Nov 27, 2020
1 parent 1e9e877 commit dde770d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/workday-waiver.html
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,10 @@
<table id="waiver-list-table">
<thead>
<tr>
<th></th>
<th data-i18n="$WorkdayWaiver.day">Day</th>
<th data-i18n="$WorkdayWaiver.waiver-reason">Waiver Reason</th>
<th data-i18n="$WorkdayWaiver.hours-waived">Hours Waived</th>
<th data-i18n="$WorkdayWaiver.delete">Delete</th>
</tr>
</thead>
<tbody></tbody>
Expand Down
8 changes: 4 additions & 4 deletions src/workday-waiver.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ function addRowToListTable(day, reason, hours)
{
let table = $('#waiver-list-table tbody')[0],
row = table.insertRow(0),
dayCell = row.insertCell(0),
reasonCell = row.insertCell(1),
hoursCell = row.insertCell(2),
delButtonCell = row.insertCell(3);
delButtonCell = row.insertCell(0),
dayCell = row.insertCell(1),
reasonCell = row.insertCell(2),
hoursCell = row.insertCell(3);

dayCell.innerHTML = day;
reasonCell.innerHTML = reason;
Expand Down

0 comments on commit dde770d

Please sign in to comment.