mirror of https://github.com/vector-im/riot-web
Fix space create menu eating first character of name in private space creation
parent
ff39f480bc
commit
e3ec00bcdf
|
@ -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);
|
||||||
}}
|
}}
|
||||||
|
|
Loading…
Reference in New Issue