Skip to content

Commit 384a85f

Browse files
authored
Merge pull request #304 from connorabbas/develop
Fixes
2 parents ca1057f + b58b6c2 commit 384a85f

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

resources/js/components/primevue/menu/Breadcrumb.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type { MenuItem } from '@/types';
66
import { ptViewMerge } from '@/utils';
77
88
interface ExtendedBreadcrumbProps extends Omit<BreadcrumbProps, 'model'> {
9-
model: MenuItem[];
9+
model?: MenuItem[] | undefined;
1010
}
1111
const componentProps = defineProps<ExtendedBreadcrumbProps>();
1212

resources/js/components/primevue/menu/ContextMenu.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type { MenuItem } from '@/types';
66
import { ptViewMerge } from '@/utils';
77
88
interface ExtendedContextMenuProps extends Omit<ContextMenuProps, 'model'> {
9-
model: MenuItem[];
9+
model?: MenuItem[] | undefined;
1010
}
1111
const componentProps = defineProps<ExtendedContextMenuProps>();
1212

resources/js/components/primevue/menu/Menu.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import type { MenuItem } from '@/types';
55
import { ptViewMerge } from '@/utils';
66
77
interface ExtendedMenuProps extends Omit<MenuProps, 'model'> {
8-
model: MenuItem[];
8+
model?: MenuItem[] | undefined;
99
}
1010
const componentProps = defineProps<ExtendedMenuProps>();
1111

resources/js/components/primevue/menu/Menubar.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type { MenuItem } from '@/types';
66
import { ptViewMerge } from '@/utils';
77
88
interface ExtendedMenubarProps extends Omit<MenubarProps, 'model'> {
9-
model: MenuItem[];
9+
model?: MenuItem[] | undefined;
1010
}
1111
const componentProps = withDefaults(
1212
defineProps<ExtendedMenubarProps>(),

resources/js/components/primevue/menu/PanelMenu.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type { MenuItem } from '@/types';
66
import { ptViewMerge } from '@/utils';
77
88
interface ExtendedPanelMenuProps extends Omit<PanelMenuProps, 'model'> {
9-
model: MenuItem[];
9+
model?: MenuItem[] | undefined;
1010
}
1111
const componentProps = defineProps<ExtendedPanelMenuProps>();
1212

resources/js/components/primevue/menu/TabMenu.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import type { MenuItem } from '@/types';
99
import { ptViewMerge } from '@/utils';
1010
1111
interface ExtendedTabListProps extends Omit<TabListProps, 'items'> {
12-
items: MenuItem[];
12+
items?: MenuItem[] | undefined;
1313
}
1414
const componentProps = defineProps<ExtendedTabListProps>();
1515

resources/js/components/primevue/menu/TieredMenu.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type { MenuItem } from '@/types';
66
import { ptViewMerge } from '@/utils';
77
88
interface ExtendedTieredMenuProps extends Omit<TieredMenuProps, 'model'> {
9-
model: MenuItem[];
9+
model?: MenuItem[] | undefined;
1010
}
1111
const componentProps = defineProps<ExtendedTieredMenuProps>();
1212

resources/js/layouts/GuestAuthLayout.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import ApplicationLogo from '@/components/ApplicationLogo.vue';
33
</script>
44

55
<template>
6-
<Container class="min-h-screen flex flex-col justify-center items-center">
6+
<Container class="min-h-svh flex flex-col justify-center items-center">
77
<div>
88
<InertiaLink href="/">
99
<ApplicationLogo class="w-12 h-12 fill-current text-surface-900 dark:text-surface-0" />

0 commit comments

Comments
 (0)