|
|
|
@ -3,7 +3,7 @@ import classNames from 'classnames';
|
|
|
|
|
import { Contact } from './MemberList';
|
|
|
|
|
|
|
|
|
|
import { SessionModal } from '../session/SessionModal';
|
|
|
|
|
import { SessionButton } from '../session/SessionButton';
|
|
|
|
|
import { SessionButton, SessionButtonColor } from '../session/SessionButton';
|
|
|
|
|
import {
|
|
|
|
|
ContactType,
|
|
|
|
|
SessionMemberListItem,
|
|
|
|
@ -136,9 +136,12 @@ export class UpdateGroupMembersDialog extends React.Component<Props, State> {
|
|
|
|
|
<div className="spacer-lg" />
|
|
|
|
|
|
|
|
|
|
<div className="session-modal__button-group">
|
|
|
|
|
<SessionButton text={okText} onClick={this.onClickOK} />
|
|
|
|
|
|
|
|
|
|
<SessionButton text={cancelText} onClick={this.closeDialog} />
|
|
|
|
|
<SessionButton
|
|
|
|
|
text={okText}
|
|
|
|
|
onClick={this.onClickOK}
|
|
|
|
|
buttonColor={SessionButtonColor.Green}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</SessionModal>
|
|
|
|
|
);
|
|
|
|
|