We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d242ec commit 974dbf3Copy full SHA for 974dbf3
sidebars.js
@@ -8,7 +8,7 @@ const docsSidebar = [...glob.sync('docs/*/*.md')
8
new Map()
9
)
10
.entries()]
11
- .sort(([day]) => day)
+ .sort(([day1], [day2]) => parseInt(day1, 10) - parseInt(day2, 10))
12
.map(([day, itemNumbers]) => ({
13
type: 'category',
14
label: `${day}日目`,
0 commit comments