mirror of
https://github.com/flarum/core.git
synced 2025-08-03 06:57:54 +02:00
fix(regression): cannot pass props
This commit is contained in:
@@ -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>
|
||||
|
@@ -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>
|
||||
|
@@ -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>
|
||||
|
@@ -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>
|
||||
|
Reference in New Issue
Block a user