Skip to content
This repository has been archived by the owner on May 20, 2023. It is now read-only.

Commit

Permalink
Fixed problem with dissapearing emails from list
Browse files Browse the repository at this point in the history
  • Loading branch information
butschster committed Nov 1, 2021
1 parent fd5977c commit 8605796
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/Modules/Smtp/Http/Controllers/ShowAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ public function __invoke(EventsRepository $events, UuidInterface $uuid)
}

return Inertia::render('Smtp/Show', [
'events' => fn() => $events->all('smtp'),
'event' => $event
'event' => $event,
'events' => $events->all('smtp'),
]);
}
}
2 changes: 1 addition & 1 deletion public/js/app.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"/js/app.js": "/js/app.js?id=0776d6a47e02f62e2124",
"/js/app.js": "/js/app.js?id=3916de05f83032bd24f1",
"/css/app.css": "/css/app.css?id=2bf686066fc03b0cc56a"
}
1 change: 0 additions & 1 deletion resources/js/Components/Smtp/NavItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<Link :href="`/mail/${event.uuid}`"
class="block border-b text-sm hover:bg-white flex items-stretch"
:class="{ 'bg-white': isActive, 'bg-gray-50': !isActive }"
:only="['event']"
>

<div class="w-1 self-stretch flex-none rounded-r" :class="{ 'bg-blue-500': isActive }"></div>
Expand Down

0 comments on commit 8605796

Please sign in to comment.