Fix Space Create menu not disabling the alias field when busy

This commit is contained in:
Michael Telatynski 2021-07-08 13:24:56 +01:00
parent fc05395dba
commit 5d72ea5e19
2 changed files with 3 additions and 0 deletions

View File

@ -27,6 +27,7 @@ interface IProps {
value: string; value: string;
label?: string; label?: string;
placeholder?: string; placeholder?: string;
disabled?: boolean;
onChange?(value: string): void; onChange?(value: string): void;
} }
@ -68,6 +69,7 @@ export default class RoomAliasField extends React.PureComponent<IProps, IState>
onChange={this.onChange} onChange={this.onChange}
value={this.props.value.substring(1, this.props.value.length - this.props.domain.length - 1)} value={this.props.value.substring(1, this.props.value.length - this.props.domain.length - 1)}
maxLength={maxlength} maxLength={maxlength}
disabled={this.props.disabled}
/> />
); );
} }

View File

@ -220,6 +220,7 @@ const SpaceCreateMenu = ({ onFinished }) => {
value={alias} value={alias}
placeholder={name ? nameToAlias(name, domain) : _t("e.g. my-space")} placeholder={name ? nameToAlias(name, domain) : _t("e.g. my-space")}
label={_t("Address")} label={_t("Address")}
disabled={busy}
/> />
: null : null
} }