Skip to content

Commit 9deac17

Browse files
authored
fix: correct className to class in AppHeader.vue (#14)
The className attribute was incorrectly used in the Vue template, which caused styling issues. This change replaces className with the correct class attribute to ensure proper styling and alignment with Vue's syntax. No breaking changes are introduced.
1 parent ca4bbb6 commit 9deac17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/js/components/AppHeader.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const rightNavItems: NavItem[] = [
7676
<SheetHeader class="flex justify-start text-left">
7777
<AppLogoIcon class="size-6 fill-current text-black dark:text-white" />
7878
</SheetHeader>
79-
<div className="flex flex-col justify-between h-full space-y-4 py-6 flex-1">
79+
<div class="flex flex-col justify-between h-full space-y-4 py-6 flex-1">
8080
<nav class="-mx-3 space-y-1">
8181
<Link
8282
v-for="item in mainNavItems"

0 commit comments

Comments
 (0)