refs #5858 feat: update template notification
This commit is contained in:
parent
57b8b69ae9
commit
a2329e1276
|
@ -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"
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue