Skip to content

Commit 1cf2bf4

Browse files
committed
Head fix
1 parent ac9764b commit 1cf2bf4

File tree

9 files changed

+9
-17
lines changed

9 files changed

+9
-17
lines changed

resources/js/Pages/Auth/ForgotPassword.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ onMounted(() => {
2626

2727
<template>
2828
<GuestLayout>
29-
30-
<Head title="Forgot Password" />
29+
<InertiaHead title="Forgot Password" />
3130

3231
<template
3332
v-if="status"

resources/js/Pages/Auth/Login.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ onMounted(() => {
3333

3434
<template>
3535
<GuestLayout>
36-
37-
<Head title="Log in" />
36+
<InertiaHead title="Log in" />
3837

3938
<template
4039
v-if="status"

resources/js/Pages/Auth/Register.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ onMounted(() => {
2525

2626
<template>
2727
<GuestLayout>
28-
29-
<Head title="Register" />
28+
<InertiaHead title="Register" />
3029

3130
<form
3231
class="space-y-6"

resources/js/Pages/Auth/ResetPassword.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ onMounted(() => {
3636

3737
<template>
3838
<GuestLayout>
39-
40-
<Head title="Reset Password" />
39+
<InertiaHead title="Reset Password" />
4140

4241
<form
4342
class="space-y-6"

resources/js/Pages/Auth/VerifyEmail.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ const verificationLinkSent = computed(
2222

2323
<template>
2424
<GuestLayout>
25-
26-
<Head title="Email Verification" />
25+
<InertiaHead title="Email Verification" />
2726

2827
<template
2928
v-if="verificationLinkSent"

resources/js/Pages/Dashboard.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<template>
2-
3-
<Head title="Dashboard" />
2+
<InertiaHead title="Dashboard" />
43
<AuthenticatedLayout>
54
<template #header>
65
<h1 class="font-bold text-2xl leading-tight">Dashboard</h1>

resources/js/Pages/Profile/Edit.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ defineProps({
1414
</script>
1515

1616
<template>
17-
18-
<Head title="Profile" />
17+
<InertiaHead title="Profile" />
1918

2019
<AuthenticatedLayout>
2120
<template #header>

resources/js/Pages/Welcome.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ defineProps({
2020
</script>
2121

2222
<template>
23-
24-
<Head title="Welcome" />
23+
<InertiaHead title="Welcome" />
2524

2625
<div class="min-h-full">
2726
<div class="h-screen flex items-center justify-center">

resources/js/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ createInertiaApp({
3636
theme: customThemePreset,
3737
})
3838
.use(ToastService)
39-
.component('Head', Head)
39+
.component('InertiaHead', Head)
4040
.component('InertiaLink', Link)
4141
.component('AuthenticatedLayout', AuthenticatedLayout)
4242
.component('Container', Container)

0 commit comments

Comments
 (0)