Skip to content

Commit

Permalink
feat(#2276): add support for space in given name
Browse files Browse the repository at this point in the history
  • Loading branch information
MSzalowski committed Nov 7, 2024
1 parent 9913448 commit 19cf335
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ changes.

- Change multilanguage support to use json file [Issue 2325](https://github.com/IntersectMBO/govtool/issues/2325)
- Display full Governance Action IDs on desktop
- Support space on given name [Issue 2276](https://github.com/IntersectMBO/govtool/issues/2276)

### Removed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const EditDRepStorageInformation = ({
} = useEditDRepInfoForm(setStep);
const { screenWidth } = useScreenDimension();

const fileName = getValues("givenName").replace(/\s/g, "");
const fileName = getValues("givenName");
const openGuideAboutStoringInformation = () =>
openInNewTab(
"https://docs.gov.tools/using-govtool/govtool-functions/storing-information-offline",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const DRepStorageInformation = ({
} = useRegisterAsdRepForm(setStep);
const { screenWidth } = useScreenDimension();

const fileName = getValues("givenName").replace(/\s/g, "");
const fileName = getValues("givenName");

const openGuideAboutStoringInformation = () =>
openInNewTab(
Expand Down
4 changes: 0 additions & 4 deletions govtool/frontend/src/consts/dRepActions/fields.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ export const Rules = {
maxLength: 80,
}),
},
pattern: {
value: /^[^\s]+$/,
message: i18n.t("registration.fields.validations.noSpaces"),
},
},
LINK_DESCRIPTION: {
maxLength: {
Expand Down

0 comments on commit 19cf335

Please sign in to comment.