Skip to content

Commit 0a64b14

Browse files
committed
Merge branch 'main' into workos
2 parents 08be34e + fbae2a4 commit 0a64b14

File tree

8 files changed

+8
-14
lines changed

8 files changed

+8
-14
lines changed

resources/css/app.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@
127127
--card: hsl(0 0% 3.9%);
128128
--card-foreground: hsl(0 0% 98%);
129129
--popover: hsl(0 0% 3.9%);
130-
--popover-foreground: 0 0% 98%;
130+
--popover-foreground: hsl(0 0% 98%);
131131
--primary: hsl(0 0% 98%);
132132
--primary-foreground: hsl(0 0% 9%);
133133
--secondary: hsl(0 0% 14.9%);

resources/js/layouts/app/AppSidebarLayout.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ withDefaults(defineProps<Props>(), {
1717
<template>
1818
<AppShell variant="sidebar">
1919
<AppSidebar />
20-
<AppContent variant="sidebar">
20+
<AppContent variant="sidebar" class="overflow-x-hidden">
2121
<AppSidebarHeader :breadcrumbs="breadcrumbs" />
2222
<slot />
2323
</AppContent>

resources/js/pages/Dashboard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const breadcrumbs: BreadcrumbItem[] = [
1616
<Head title="Dashboard" />
1717

1818
<AppLayout :breadcrumbs="breadcrumbs">
19-
<div class="flex h-full flex-1 flex-col gap-4 rounded-xl p-4">
19+
<div class="flex h-full flex-1 flex-col gap-4 rounded-xl p-4 overflow-x-auto">
2020
<div class="grid auto-rows-min gap-4 md:grid-cols-3">
2121
<div class="relative aspect-video overflow-hidden rounded-xl border border-sidebar-border/70 dark:border-sidebar-border">
2222
<PlaceholderPattern />

resources/js/pages/settings/Profile.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ interface Props {
1717
1818
defineProps<Props>();
1919
20-
const breadcrumbs: BreadcrumbItem[] = [
20+
const breadcrumbItems: BreadcrumbItem[] = [
2121
{
2222
title: 'Profile settings',
2323
href: '/settings/profile',
@@ -40,7 +40,7 @@ const submit = () => {
4040
</script>
4141

4242
<template>
43-
<AppLayout :breadcrumbs="breadcrumbs">
43+
<AppLayout :breadcrumbs="breadcrumbItems">
4444
<Head title="Profile settings" />
4545

4646
<SettingsLayout>

resources/js/ssr.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ createServer((page) =>
1111
createInertiaApp({
1212
page,
1313
render: renderToString,
14-
title: (title) => `${title} - ${appName}`,
14+
title: (title) => title ? `${title} - ${appName}` : appName,
1515
resolve: resolvePage,
1616
setup: ({ App, props, plugin }) =>
1717
createSSRApp({ render: () => h(App, props) })

resources/js/types/globals.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ declare module '@inertiajs/core' {
1717
interface PageProps extends InertiaPageProps, AppPageProps {}
1818
}
1919

20-
declare module '@vue/runtime-core' {
20+
declare module 'vue' {
2121
interface ComponentCustomProperties {
2222
$inertia: typeof Router;
2323
$page: Page;

resources/js/types/ziggy.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ declare global {
44
let route: typeof route;
55
}
66

7-
declare module '@vue/runtime-core' {
7+
declare module 'vue' {
88
interface ComponentCustomProperties {
99
route: typeof route;
1010
}

vite.config.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import vue from '@vitejs/plugin-vue';
22
import laravel from 'laravel-vite-plugin';
3-
import path from 'path';
43
import tailwindcss from '@tailwindcss/vite';
54
import { defineConfig } from 'vite';
65

@@ -21,9 +20,4 @@ export default defineConfig({
2120
},
2221
}),
2322
],
24-
resolve: {
25-
alias: {
26-
'@': path.resolve(__dirname, './resources/js'),
27-
},
28-
},
2923
});

0 commit comments

Comments
 (0)