Skip to content

Commit

Permalink
Fix issue with classes not being filtered correctly when using sections
Browse files Browse the repository at this point in the history
  • Loading branch information
xdjinnx committed Jul 17, 2024
1 parent 87f1b6c commit 7ada8f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docusaurus-plugin-moonwave/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function parseSectionalClassOrder(content, classOrder, filteredContent) {
}

const toPush = [...namesWithTags, ...namesIncludedInClasses]
listedNames.push(toPush)
listedNames.push(...toPush)
})

const unlistedSidebar = content
Expand Down

0 comments on commit 7ada8f2

Please # to comment.