diff --git a/pwa/src/templates/templateParts/applicationsForm/ApplicationsFormTemplate.tsx b/pwa/src/templates/templateParts/applicationsForm/ApplicationsFormTemplate.tsx index fd05495d..2baca593 100644 --- a/pwa/src/templates/templateParts/applicationsForm/ApplicationsFormTemplate.tsx +++ b/pwa/src/templates/templateParts/applicationsForm/ApplicationsFormTemplate.tsx @@ -52,6 +52,7 @@ export const ApplicationsFormTemplate: React.FC = const handleSetFormValues = (application: any): void => { const basicFields: string[] = [ + "reference", "name", "description", "public", @@ -84,6 +85,19 @@ export const ApplicationsFormTemplate: React.FC =
+ + + {t("Reference")} + + + + {t("Name")} diff --git a/pwa/src/templates/templateParts/securityGroupsForm/SecurityGroupFormTemplate.tsx b/pwa/src/templates/templateParts/securityGroupsForm/SecurityGroupFormTemplate.tsx index 9592cab6..d0426e81 100644 --- a/pwa/src/templates/templateParts/securityGroupsForm/SecurityGroupFormTemplate.tsx +++ b/pwa/src/templates/templateParts/securityGroupsForm/SecurityGroupFormTemplate.tsx @@ -41,7 +41,7 @@ export const SecurityGroupFormTemplate: React.FC }; const handleSetFormValues = (): void => { - const basicFields: string[] = ["name", "description", "config"]; + const basicFields: string[] = ["reference", "name", "description", "config"]; basicFields.forEach((field) => setValue(field, securityGroup[field])); setValue( @@ -62,6 +62,19 @@ export const SecurityGroupFormTemplate: React.FC
+ + + {t("Reference")} + + + + {t("Name")}