fix(regression): cannot pass props
Some checks are pending
Backend Tests / run (push) Waiting to run
Frontend Workflow / run (push) Waiting to run
Static Code Analysis / run (push) Waiting to run

This commit is contained in:
Sami Mazouz 2024-12-08 11:07:58 +01:00
parent d9e79608fb
commit b44d5175b6
No known key found for this signature in database
4 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
<x-mail::html>
<x-mail::html :greeting="$greeting ?? null" :signoff="$signoff ?? null">
<x-slot:header>
<h2>{{ $title ?? $translator->trans('core.email.informational.default_title') }}</h2>
</x-slot:header>

View File

@ -1,4 +1,4 @@
<x-mail::html>
<x-mail::html :greeting="$greeting ?? null" :signoff="$signoff ?? null">
<x-slot:header>
<h2>{{ $title ?? $translator->trans('core.email.notification.default_title') }}</h2>
</x-slot:header>

View File

@ -1,4 +1,4 @@
<x-mail::plain>
<x-mail::plain :greeting="$greeting ?? null" :signoff="$signoff ?? null">
<x-slot:header>
{{ $title ?? $translator->trans('core.email.informational.default_title') }}
</x-slot:header>

View File

@ -1,4 +1,4 @@
<x-mail::plain>
<x-mail::plain :greeting="$greeting ?? null" :signoff="$signoff ?? null">
<x-slot:header>
{{ $title ?? $translator->trans('core.email.notification.default_title') }}
</x-slot:header>