Skip to content
Snippets Groups Projects
Commit 35f8ee9f authored by Léo Banno-Cloutier's avatar Léo Banno-Cloutier
Browse files

Blueprint: Change max title length to 40

Change-Id: Idffa1d5d7eb9c5c8d423f2a0564341bba4668d92
parent 2f850e9d
No related branches found
No related tags found
No related merge requests found
......@@ -260,7 +260,7 @@
"welcome_has_description": "Description",
"welcome_Description": "Here is your Jami identifier, don't hesitate to share it in order to be contacted more easily!",
"welcome_has_Tips": "Enable Tips display",
"instruction_title": "Use Jami title or personalize it (max 30 characters)",
"instruction_title": "Use Jami title or personalize it (max 40 characters)",
"instruction_description": "Use Jami description or personalize it (max 100 characters)",
"welcome_has_BackgroundCustom": "Background",
"instruction_background": "Choose a background color or a background image",
......
......@@ -88,7 +88,7 @@ const TitleForm = ({ uiCustomization, handleUpdateUi }) => {
<span>
{i18next.t(
"instruction_title",
"Use Jami title or personalize it (max 30 characters)"
"Use Jami title or personalize it (max 40 characters)"
)}
</span>
<TextField
......@@ -99,7 +99,7 @@ const TitleForm = ({ uiCustomization, handleUpdateUi }) => {
handleUpdateUi("title", e.target.value);
}}
fullWidth
inputProps={{ maxLength: 30 }}
inputProps={{ maxLength: 40 }}
/>
</FormGroup>
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment