refactor(blank-notification): refs #6367 order props
gitea/salix/pipeline/head There was a failure building this commit Details
gitea/salix/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Pablo Natek 2023-12-28 09:19:21 +01:00
parent 6dff7d5115
commit 0d85e89dc1
1 changed files with 3 additions and 3 deletions

View File

@ -6,15 +6,15 @@ module.exports = {
'email-body': emailBody.build() 'email-body': emailBody.build()
}, },
props: { props: {
subject: {
type: String
},
title: { title: {
type: String, type: String,
required: true required: true
}, },
text: { text: {
type: String type: String
},
subject: {
type: String
} }
} }
}; };