Merge branch 'develop' of github.com:matrix-org/matrix-react-sdk into t3chguy/fix/pins

This commit is contained in:
Michael Telatynski 2021-07-09 07:48:12 +01:00
commit b9be0896f1
12 changed files with 169 additions and 71 deletions

View file

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