diff --git a/lifetracker-vue/src/views/TableView.vue b/lifetracker-vue/src/views/TableView.vue index 7455844..b0652ad 100644 --- a/lifetracker-vue/src/views/TableView.vue +++ b/lifetracker-vue/src/views/TableView.vue @@ -66,7 +66,8 @@ function hourCol(t) { const colHeaders = ["DATE", "DAY", "12 AM"] .concat(Array.from(new Array(11), (x, y) => y + 1 + " AM")) - .concat(Array.from(new Array(12), (x, y) => y + 1 + " PM")) + .concat(["12 PM"]) + .concat(Array.from(new Array(11), (x, y) => y + 1 + " PM")) .concat(["Mood", "Comments"]); const ExampleComponent = defineComponent({