1
0

fix: Background color when not specified
All checks were successful
Remote Deploy / deploy (push) Successful in 5s

This commit is contained in:
2026-02-10 21:44:42 +01:00
parent de7ac3a48d
commit d4815d39ca

View File

@@ -265,7 +265,7 @@ function parseLessonCell(cell, themeColors) {
const backgroundColor = resolveCellColor(cell, themeColors);
const foregroundColor = !backgroundColor ? undefined : (
cell.font?.color?.argb === undefined ? undefined : `#${cell.font.color.argb}`
cell.font?.color?.argb === undefined ? "#FF000000" : `#${cell.font.color.argb}`
);
return {