mirror of
https://github.com/TextPlace/CoreTextPlace.git
synced 2025-05-01 05:01:11 +00:00
fix: format
This commit is contained in:
parent
97ad480ad8
commit
8940f26f17
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ export function createSection(
|
||||||
Array(boardConfig.sectionWidth).fill(boardConfig.defaultColor)
|
Array(boardConfig.sectionWidth).fill(boardConfig.defaultColor)
|
||||||
);
|
);
|
||||||
const bgColor: string[][] = Array(boardConfig.sectionHeight).fill([]).map(
|
const bgColor: string[][] = Array(boardConfig.sectionHeight).fill([]).map(
|
||||||
() => Array(boardConfig.sectionWidth).fill(boardConfig.defaultBgColor)
|
() => Array(boardConfig.sectionWidth).fill(boardConfig.defaultBgColor),
|
||||||
);
|
);
|
||||||
const width: number[][] = Array(boardConfig.sectionHeight).fill([]).map(() =>
|
const width: number[][] = Array(boardConfig.sectionHeight).fill([]).map(() =>
|
||||||
Array(boardConfig.sectionWidth).fill(boardConfig.defaultWidth)
|
Array(boardConfig.sectionWidth).fill(boardConfig.defaultWidth)
|
||||||
|
|
Loading…
Add table
Reference in a new issue