diff --git a/app/javascript/template_builder/builder.vue b/app/javascript/template_builder/builder.vue index b70ecf2a..e83ccc3d 100644 --- a/app/javascript/template_builder/builder.vue +++ b/app/javascript/template_builder/builder.vue @@ -541,6 +541,12 @@ export default { } }, created () { + if (!this.template.fields?.length && this.template.submitters?.length === 1) { + if (this.template.submitters[0]?.name === 'First Party') { + this.template.submitters[0].name = this.t('first_party') + } + } + const existingSubmittersUuids = this.defaultSubmitters.map((name) => { return this.template.submitters.find(e => e.name === name)?.uuid })