This commit is contained in:
EwelinaLasowy 2022-04-20 14:40:09 +02:00
parent 122798ec8d
commit 714cff4e48
2 changed files with 3 additions and 3 deletions

View File

@ -89,7 +89,7 @@ class DatabaseSeeder extends Seeder
foreach ($users as $user) { foreach ($users as $user) {
Key::factory() Key::factory()
->for($user, "owner") ->for($user)
->create(); ->create();
} }
} }

View File

@ -248,7 +248,7 @@
as="template" as="template"
:value="user" :value="user"
> >
<li :class="[active ? 'text-white bg-blumilk-600' : 'text-gray-900', 'cursor-default select-none relative py-2 pl-3 pr-9']"> <li :class="[active ? 'bg-gray-100' : 'text-gray-900', 'cursor-default select-none relative py-2 pl-3 pr-9']">
<div class="flex items-center"> <div class="flex items-center">
<img <img
:src="user.avatar" :src="user.avatar"
@ -262,7 +262,7 @@
<span <span
v-if="selected" v-if="selected"
:class="[active ? 'text-white' : 'text-blumilk-600', 'absolute inset-y-0 right-0 flex items-center pr-4']" :class="['text-blumilk-600 absolute inset-y-0 right-0 flex items-center pr-4']"
> >
<CheckIcon class="w-5 h-5" /> <CheckIcon class="w-5 h-5" />
</span> </span>