Skip to content

Commit

Permalink
fix(markup): Add missing navItems class.
Browse files Browse the repository at this point in the history
  • Loading branch information
jayfreestone committed Jun 13, 2019
1 parent b41920d commit 8653c5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/priorityPlus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ function priorityPlus(targetElem: HTMLElement, userOptions: DeepPartial<Options>
class="${cn(El.PrimaryNav)}"
>
${Array.from(targetElem.children).map((elem: Element) => (
`<li ${dv(El.NavItems)}>${elem.innerHTML}</li>`
`<li ${dv(El.NavItems)} class="${cn(El.NavItems)}">${elem.innerHTML}</li>`
)).join('')}
</${targetElem.tagName}>
</div>
Expand Down

0 comments on commit 8653c5c

Please sign in to comment.