Merge pull request #2364 from hmhealey/confirm

Renamed confirm_button to confirmButton in InviteMemberModal
This commit is contained in:
Christopher Speller
2016-03-07 17:18:02 -05:00

View File

@@ -495,7 +495,7 @@ class InviteMemberModal extends React.Component {
<ConfirmModal <ConfirmModal
title={formatMessage(holders.modalTitle)} title={formatMessage(holders.modalTitle)}
message={formatMessage(holders.modalMessage)} message={formatMessage(holders.modalMessage)}
confirm_button={formatMessage(holders.modalButton)} confirmButton={formatMessage(holders.modalButton)}
show={this.state.showConfirmModal} show={this.state.showConfirmModal}
onConfirm={this.handleHide.bind(this, false)} onConfirm={this.handleHide.bind(this, false)}
onCancel={() => this.setState({showConfirmModal: false})} onCancel={() => this.setState({showConfirmModal: false})}
@@ -512,4 +512,4 @@ InviteMemberModal.propTypes = {
intl: intlShape.isRequired intl: intlShape.isRequired
}; };
export default injectIntl(InviteMemberModal); export default injectIntl(InviteMemberModal);