0
0
Fork 0

refs #6332 fix calendar

This commit is contained in:
Carlos Satorres 2024-05-22 08:35:01 +02:00
parent 3d6fac5338
commit 81f7e06143
1 changed files with 1 additions and 4 deletions

View File

@ -163,10 +163,7 @@ const getEventAttrs = (timestamp) => {
if (isFestive) { if (isFestive) {
attrs.class = '--festive'; attrs.class = '--festive';
attrs.label = event.absenceId ? timestamp.day : ''; attrs.label = event.absenceId ? timestamp.day : '';
// attrs.style = 'color: red'; } else attrs.class = `--${type}`;
}
// if(type === 'holiday')
else attrs.class = `--${type}`;
return attrs; return attrs;
}; };