diff --git a/frontend/ChapterList.vue b/frontend/ChapterList.vue index 74c6be1..85cbd5a 100644 --- a/frontend/ChapterList.vue +++ b/frontend/ChapterList.vue @@ -872,7 +872,10 @@ export default Vue.extend({ if (time.isValid()) { c = 'is-danger'; } - if (time.isAfter(dayjs().add(-3, 'month'))) { + if (time.isAfter(dayjs().add(-2, 'month'))) { + c = 'is-warning'; + } + if (time.isAfter(dayjs().add(-1, 'month'))) { c = 'is-success'; } return c;