diff --git a/components/case/representation/representationElements.js b/components/case/representation/representationElements.js
index 504e0928..3e793654 100644
--- a/components/case/representation/representationElements.js
+++ b/components/case/representation/representationElements.js
@@ -401,7 +401,10 @@ export const RenderLPACondtionalRadioList = ({
{typeof custom.hint != undefined && (
-
+
{t(custom.hint)}
)}
diff --git a/components/elements/index.js b/components/elements/index.js
index 38b1c199..ebcbbcb2 100644
--- a/components/elements/index.js
+++ b/components/elements/index.js
@@ -2287,6 +2287,8 @@ const RenderSubFields = ({ fields, meta: { touched, error }, ...custom }) => {
const required = (value) =>
value ? undefined : t("newappeal:is-required-label");
+ //fields.push({});
+ fields.length == 0 && fields.push({});
return (
{fields.map((member, index) => (
@@ -2342,7 +2344,7 @@ const RenderSubFields = ({ fields, meta: { touched, error }, ...custom }) => {
onClick={() => fields.push({})}
>
{subTitle == "owners"
- ? "Add Owner"
+ ? t("newappeal:new-appeal-add-owner-label")
: t("newappeal:new-appeal-add-tenant-label")}
)}
diff --git a/locales/cy/newappeal.json b/locales/cy/newappeal.json
index 38d2132c..a5686250 100644
--- a/locales/cy/newappeal.json
+++ b/locales/cy/newappeal.json
@@ -76,6 +76,7 @@
"new-appeal-agricultural-holding-option-yes": "(a) Nid oes unrhyw ran o’r tir y mae’r apêl yn ymwneud ag ef yn ddaliad amaethyddol, neu’n rhan o ddaliad amaethyddol",
"new-appeal-agricultural-holding-option-no": "(b) (i) Mae safle’r apêl yn ddaliad amaethyddol, neu’n rhan o ddaliad amaethyddol, a’r apelydd yw’r unig denant amaethyddol",
"new-appeal-agricultural-holding-option-NA": "(b) (ii) Mae safle’r apêl yn ddaliad amaethyddol neu’n rhan o ddaliad amaethyddol ac mae’r apelydd (neu’r asiant) wedi rhoi’r hysbysiad gofynnol i bob unigolyn (ac eithrio’r apelydd) a oedd, ar y diwrnod 21 diwrnod cyn dyddiad yr apêl, yn denant daliad amaethyddol ar y cyfan neu ran o’r tir y mae’r apêl yn ymwneud ag ef, fel y rhestrir isod:",
+ "new-appeal-add-owner-label": "Ychwanegu Perchennog",
"new-appeal-add-tenant-label": "Ychwanegu Tenant",
"new-appeal-procedure-option-virtual": "Rhithwir",
"new-appeal-procedure-option-inperson": "Wyneb yn wyneb",
diff --git a/locales/en/newappeal.json b/locales/en/newappeal.json
index 80fca032..c19e9279 100644
--- a/locales/en/newappeal.json
+++ b/locales/en/newappeal.json
@@ -76,6 +76,7 @@
"new-appeal-agricultural-holding-option-yes": "(a) None of the land to which the appeal relates is, or is part of, an agricultural holding",
"new-appeal-agricultural-holding-option-no": "(b) (i) The appeal site is, or is part of an agricultural holding, and the appellant is the sole agricultural tenant",
"new-appeal-agricultural-holding-option-NA": "(b) (ii) The appeal site is, or is part of, an agricultural holding and the appellant (or the agent) has given the requisite notice to every person (other than the appellant) who, on the day 21 days before the date of the appeal, was a tenant of an agricultural holding on all or part of the land to which the appeal relates as listed below:",
+ "new-appeal-add-owner-label": "Add Owner",
"new-appeal-add-tenant-label": "Add Tenant",
"new-appeal-procedure-option-virtual": "Virtual",
"new-appeal-procedure-option-inperson": "In person",