Skip to content

Commit 2896173

Browse files
committed
Lint
1 parent 5dee0f1 commit 2896173

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

database/migrations/2026_01_05_054832_create_admin_invites_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function up(): void
2929
$table->timestamps();
3030
});
3131

32-
Schema::table('users', function( Blueprint $table) {
32+
Schema::table('users', function (Blueprint $table) {
3333
$table->unsignedBigInteger('admin_invite_id')->nullable();
3434
});
3535
}

resources/js/pages/admin/AdminInvites.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
</router-link>
3838
</template>
3939

40-
<template #cell-title="{ value, item }">
40+
<template #cell-title="{ value }">
4141
<p class="flex text-wrap break-all w-[250px]">
4242
{{ value }}
4343
</p>
@@ -70,7 +70,7 @@
7070
>
7171
</template>
7272

73-
<template #cell-expires_at="{ value, item }">
73+
<template #cell-expires_at="{ value }">
7474
<div v-if="!value">
7575
<div class="text-gray-900 dark:text-white font-medium text-sm">Never</div>
7676
</div>

resources/js/pages/invite/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
class="rounded-3xl border border-slate-200 bg-white/80 p-6 shadow-xl shadow-slate-900/5 backdrop-blur dark:border-slate-800 dark:bg-slate-900/70 dark:shadow-black/30 overflow-hidden"
114114
>
115115
<transition name="slide">
116-
<div class="space-y-4">
116+
<div v-if="authStore.isAuthenticated" class="space-y-4">
117117
<div class="flex justify-center items-center gap-3">
118118
<div
119119
class="flex flex-col space-y-3 justify-center items-center"

0 commit comments

Comments
 (0)