1
0
mirror of https://github.com/flarum/core.git synced 2025-05-06 23:45:39 +02:00

fix(regression): cannot pass props

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>