Fix space create menu eating first character of name in private space creation
This commit is contained in:
@@ -177,7 +177,7 @@ export const SpaceCreateForm: React.FC<ISpaceCreateFormProps> = ({
|
|||||||
const newName = ev.target.value;
|
const newName = ev.target.value;
|
||||||
if (!alias || alias === `#${nameToLocalpart(name)}:${domain}`) {
|
if (!alias || alias === `#${nameToLocalpart(name)}:${domain}`) {
|
||||||
setAlias(`#${nameToLocalpart(newName)}:${domain}`);
|
setAlias(`#${nameToLocalpart(newName)}:${domain}`);
|
||||||
aliasFieldRef.current.validate({ allowEmpty: true });
|
aliasFieldRef.current?.validate({ allowEmpty: true });
|
||||||
}
|
}
|
||||||
setName(newName);
|
setName(newName);
|
||||||
}}
|
}}
|
||||||
|
|||||||
Reference in New Issue
Block a user