refs #5858 feat: update template notification

This commit is contained in:
Javier Segarra 2023-11-23 15:17:40 +01:00
parent 57b8b69ae9
commit a2329e1276
3 changed files with 7 additions and 7 deletions

View File

@ -1,2 +1,2 @@
subject: Colisión de zona detectada
title: "La zona {0} ha sido registrada en más de un sitio"
subject: Colisión de zona {0} detectada
title: "La localización {0} ha sido registrada en más de un sitio"

View File

@ -1,8 +1,8 @@
<email-body v-bind="$props">
<div class="grid-row">
<div class="grid-block vn-pa-ml">
<h1>{{ $t('subject') }}</h1>
<p>{{ $t('title', [this.zoneIncluded.name]) }}</p>
<h1>{{ $t('subject', [zoneSelected]) }}</h1>
<p>{{ $t('title', [geoSelected]) }}</p>
</div>
</div>
</email-body>

View File

@ -15,11 +15,11 @@ module.exports = {
'email-body': emailBody.build(),
},
props: {
id: {
type: Number,
zoneSelected: {
type: String,
required: true
},
url: {
geoSelected: {
type: String,
required: true
}