Skip to content

Commit

Permalink
Fix navbar links pointing to undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
yusufsallam64 committed Sep 3, 2023
1 parent 6089fd1 commit dcb829c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/elements/common/navbar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ export default class NavBar extends LitElement {
</svg>
<a
.href=${ifDefined(crumb.url)}
href=${ifDefined(crumb.url)}
class="text-slate-200 hover:bg-slate-200/5 hover:text-white flex font-display text-md items-center rounded-md gap-3 pl-3.5 pr-3.5 py-1.5 transition"
>
${when(typeof crumb.img !== 'undefined', () => {
Expand Down

0 comments on commit dcb829c

Please sign in to comment.