diff --git a/frontend/ChapterList.vue b/frontend/ChapterList.vue index 17a621b..42cc564 100644 --- a/frontend/ChapterList.vue +++ b/frontend/ChapterList.vue @@ -728,7 +728,7 @@ export default Vue.extend({ .format('YYYY-MM-DD'); }, colorFBSyncStatus(text: string) { - const time = moment(text); + const time = moment(text).add(8, 'hour'); // this converts our DB time for this field to UTC console.log(time); let color = 'grey'; if (time.isValid()) {