This commit is contained in:
Marta Kowalska
2025-12-22 20:22:30 +00:00
parent d4429300aa
commit bb81e7a336
90 changed files with 3676 additions and 1828 deletions
+4 -4
View File
@@ -7,10 +7,10 @@ function GanttHolidays({ skinSettings }) {
const scales = useMemo(
() => [
{ unit: 'year', step: 1, format: 'yyyy' },
{ unit: 'month', step: 2, format: 'MMMM yyy' },
{ unit: 'week', step: 1, format: 'wo' },
{ unit: 'day', step: 1, format: 'd, EEEE' /* , css: dayStyle */ }
{ unit: 'year', step: 1, format: '%Y' },
{ unit: 'month', step: 2, format: '%F %Y' },
{ unit: 'week', step: 1, format: 'Week %W' },
{ unit: 'day', step: 1, format: '%j, %l' },
],
[],
);