hotfix: refs #7323 generate code & minor changes #635

Merged
jorgep merged 6 commits from 7323-hotfix-workerFineTunning into master 2024-08-23 06:49:18 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 9c99266da6 - Show all commits

View File

@ -152,7 +152,7 @@ const getEventAttrs = (timestamp) => {
if (isFestive) {
attrs.class = '--festive';
attrs.label = event.absenceId ?? timestamp.day;
Review

Esto mostraba el id de la ausencia... en lugar del día. Además, en la lógica de Salix, no he visto nada parecido.

Esto mostraba el id de la ausencia... en lugar del día. Además, en la lógica de Salix, no he visto nada parecido.
attrs.label = timestamp.day;
} else attrs.class = `--${type}`;
return attrs;