From b60602aefd6a74537d96f8da92edf1c9aa37ba9d Mon Sep 17 00:00:00 2001 From: Ryan Pandya Date: Sun, 21 May 2023 18:09:56 -0700 Subject: [PATCH] Fix hours display --- lifetracker-vue/src/views/TableView.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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({