diff options
Diffstat (limited to 'src/upd8.js')
-rwxr-xr-x | src/upd8.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/upd8.js b/src/upd8.js index 045bf139..5589877c 100755 --- a/src/upd8.js +++ b/src/upd8.js @@ -1508,7 +1508,11 @@ async function main() { logThings('staticPageData', 'static pages'); if (wikiData.homepageLayout) { logInfo` - ${1} homepage layout (${ - wikiData.homepageLayout.rows.length + wikiData.homepageLayout.sections.length + } sections, ${ + wikiData.homepageLayout.sections + .flatMap(section => section.rows) + .length } rows)`; } if (wikiData.wikiInfo) { |