diff --git a/src/workday-waiver.html b/src/workday-waiver.html
index 16449d58f..59fc87deb 100644
--- a/src/workday-waiver.html
+++ b/src/workday-waiver.html
@@ -120,10 +120,10 @@
+ |
Day |
Waiver Reason |
Hours Waived |
- Delete |
diff --git a/src/workday-waiver.js b/src/workday-waiver.js
index 73f5cfc91..0d758a2fd 100644
--- a/src/workday-waiver.js
+++ b/src/workday-waiver.js
@@ -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;