File tree Expand file tree Collapse file tree 8 files changed +8
-14
lines changed Expand file tree Collapse file tree 8 files changed +8
-14
lines changed Original file line number Diff line number Diff line change 127
127
--card : hsl (0 0% 3.9% );
128
128
--card-foreground : hsl (0 0% 98% );
129
129
--popover : hsl (0 0% 3.9% );
130
- --popover-foreground : 0 0% 98% ;
130
+ --popover-foreground : hsl ( 0 0% 98% ) ;
131
131
--primary : hsl (0 0% 98% );
132
132
--primary-foreground : hsl (0 0% 9% );
133
133
--secondary : hsl (0 0% 14.9% );
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ withDefaults(defineProps<Props>(), {
17
17
<template >
18
18
<AppShell variant =" sidebar" >
19
19
<AppSidebar />
20
- <AppContent variant =" sidebar" >
20
+ <AppContent variant =" sidebar" class = " overflow-x-hidden " >
21
21
<AppSidebarHeader :breadcrumbs =" breadcrumbs" />
22
22
<slot />
23
23
</AppContent >
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ const breadcrumbs: BreadcrumbItem[] = [
16
16
<Head title =" Dashboard" />
17
17
18
18
<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 " >
20
20
<div class =" grid auto-rows-min gap-4 md:grid-cols-3" >
21
21
<div class =" relative aspect-video overflow-hidden rounded-xl border border-sidebar-border/70 dark:border-sidebar-border" >
22
22
<PlaceholderPattern />
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ interface Props {
17
17
18
18
defineProps <Props >();
19
19
20
- const breadcrumbs : BreadcrumbItem [] = [
20
+ const breadcrumbItems : BreadcrumbItem [] = [
21
21
{
22
22
title: ' Profile settings' ,
23
23
href: ' /settings/profile' ,
@@ -40,7 +40,7 @@ const submit = () => {
40
40
</script >
41
41
42
42
<template >
43
- <AppLayout :breadcrumbs =" breadcrumbs " >
43
+ <AppLayout :breadcrumbs =" breadcrumbItems " >
44
44
<Head title =" Profile settings" />
45
45
46
46
<SettingsLayout >
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ createServer((page) =>
11
11
createInertiaApp ( {
12
12
page,
13
13
render : renderToString ,
14
- title : ( title ) => `${ title } - ${ appName } ` ,
14
+ title : ( title ) => title ? `${ title } - ${ appName } ` : appName ,
15
15
resolve : resolvePage ,
16
16
setup : ( { App, props, plugin } ) =>
17
17
createSSRApp ( { render : ( ) => h ( App , props ) } )
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ declare module '@inertiajs/core' {
17
17
interface PageProps extends InertiaPageProps , AppPageProps { }
18
18
}
19
19
20
- declare module '@ vue/runtime-core ' {
20
+ declare module 'vue' {
21
21
interface ComponentCustomProperties {
22
22
$inertia : typeof Router ;
23
23
$page : Page ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ declare global {
4
4
let route : typeof route ;
5
5
}
6
6
7
- declare module '@ vue/runtime-core ' {
7
+ declare module 'vue' {
8
8
interface ComponentCustomProperties {
9
9
route : typeof route ;
10
10
}
Original file line number Diff line number Diff line change 1
1
import vue from '@vitejs/plugin-vue' ;
2
2
import laravel from 'laravel-vite-plugin' ;
3
- import path from 'path' ;
4
3
import tailwindcss from '@tailwindcss/vite' ;
5
4
import { defineConfig } from 'vite' ;
6
5
@@ -21,9 +20,4 @@ export default defineConfig({
21
20
} ,
22
21
} ) ,
23
22
] ,
24
- resolve : {
25
- alias : {
26
- '@' : path . resolve ( __dirname , './resources/js' ) ,
27
- } ,
28
- } ,
29
23
} ) ;
You can’t perform that action at this time.
0 commit comments