fix: Background color when not specified
All checks were successful
Remote Deploy / deploy (push) Successful in 5s
All checks were successful
Remote Deploy / deploy (push) Successful in 5s
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user