From 4851f1807965b9298048945df2b8c84d8a89316f Mon Sep 17 00:00:00 2001 From: Prospector Date: Sun, 16 Feb 2025 19:04:11 -0800 Subject: [PATCH] Updated changelog --- .../ui/src/components/changelog/ChangelogEntry.vue | 10 +++++++--- packages/utils/changelog.ts | 12 ++++++++++++ 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/packages/ui/src/components/changelog/ChangelogEntry.vue b/packages/ui/src/components/changelog/ChangelogEntry.vue index 8c172ef5..2a6c1deb 100644 --- a/packages/ui/src/components/changelog/ChangelogEntry.vue +++ b/packages/ui/src/components/changelog/ChangelogEntry.vue @@ -23,12 +23,12 @@
{{ longDate }} @@ -67,7 +67,7 @@ const props = withDefaults( const currentDate = ref(dayjs()) const recent = computed(() => props.entry.date.isAfter(currentDate.value.subtract(1, 'week'))) -const future = computed(() => props.entry.date.isBefore(currentDate.value)) +const future = computed(() => props.entry.date.isAfter(currentDate.value)) const dateTooltip = computed(() => props.entry.date.format('MMMM D, YYYY [at] h:mm A')) const relativeDate = computed(() => props.entry.date.fromNow()) @@ -91,6 +91,10 @@ const messages = defineMessages({ id: 'changelog.product.api', defaultMessage: 'API', }, + justNow: { + id: 'changelog.justNow', + defaultMessage: 'Just now', + }, })