diff --git a/components/Formation.vue b/components/Formation.vue
index febf312..f46f555 100644
--- a/components/Formation.vue
+++ b/components/Formation.vue
@@ -42,7 +42,7 @@ export default {
methods: {
formatDate(date) {
const dateFormat = new Date(date)
- return this.$t('month_' + dateFormat.getMonth()) + " " + dateFormat.getFullYear()
+ return date === 'Today' ? 'Today' : this.$t('month_' + dateFormat.getMonth()) + " " + dateFormat.getFullYear()
}
}
}
diff --git a/pages/blog/index.vue b/pages/blog/index.vue
index eb97d2b..932eb47 100644
--- a/pages/blog/index.vue
+++ b/pages/blog/index.vue
@@ -8,36 +8,36 @@