0
0
Fork 0

fix: refs #7323 replace day

This commit is contained in:
Jorge Penadés 2024-08-21 16:02:16 +02:00
parent 517ec87e16
commit 9c99266da6
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ const getEventAttrs = (timestamp) => {
if (isFestive) { if (isFestive) {
attrs.class = '--festive'; attrs.class = '--festive';
attrs.label = event.absenceId ?? timestamp.day; attrs.label = timestamp.day;
} else attrs.class = `--${type}`; } else attrs.class = `--${type}`;
return attrs; return attrs;