Merge pull request #1099 from Bilb/fix-enter-create-private-group

pull/1106/head
Audric Ackermann 5 years ago committed by GitHub
commit 5d9c334809
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -86,10 +86,7 @@ export class LeftPaneChannelSection extends React.Component<Props, State> {
if (conversationList !== undefined) {
conversationList = conversationList.filter(
// a channel is either a public group or a rss group
conversation =>
conversation.type === 'group' &&
(conversation.isPublic ||
(conversation.lastMessage && conversation.lastMessage.isRss))
conversation => conversation && conversation.type === 'group'
);
}

@ -901,6 +901,8 @@ export class RegistrationTabs extends React.Component<{}, State> {
});
} catch (e) {
window.console.log(e);
await this.resetRegistration();
this.setState({
loading: false,
});

@ -173,10 +173,10 @@ export class SessionClosableOverlay extends React.Component<Props, State> {
ref={this.inputRef}
editable={!noContactsForClosedGroup}
placeholder={placeholder}
value={this.state.groupName}
value={groupName}
maxLength={window.CONSTANTS.MAX_GROUPNAME_LENGTH}
onChange={this.onGroupNameChanged}
onPressEnter={() => onButtonClick(this.state.groupName)}
onPressEnter={() => onButtonClick(groupName, selectedMembers)}
/>
</div>
) : (

Loading…
Cancel
Save