Added more sample data

This commit is contained in:
Alexis
2024-04-04 17:44:58 +02:00
parent cfe1017bb1
commit 79868f5481
2 changed files with 29 additions and 3 deletions

View File

@@ -56,7 +56,7 @@ export const useCalendarEvents = defineStore('calendar-events', () => {
const characterBirthEvents = computed(() => {
return charactersWithBirthData.map((character) => {
return {
title: `${character.name}`,
title: `Naissance de ${character.name}`,
date: character.birth,
category: 'birth'
} as CalendarEvent
@@ -66,7 +66,7 @@ export const useCalendarEvents = defineStore('calendar-events', () => {
const characterDeathEvents = computed(() => {
return charactersWithDeathData.map((character) => {
return {
title: `${character.name}`,
title: `Décès de ${character.name}`,
date: character.death,
category: 'death'
} as CalendarEvent