forked from p15670423/monkey
UI: Remove renderAttackAlertModal from ConfigurePage.js
Nothing was using this function
This commit is contained in:
parent
efe77e2150
commit
bac091f185
|
@ -46,7 +46,6 @@ class ConfigurePageComponent extends AuthComponent {
|
||||||
selectedSection: this.currentSection,
|
selectedSection: this.currentSection,
|
||||||
showUnsubmittedConfigWarning: false,
|
showUnsubmittedConfigWarning: false,
|
||||||
showUnsafeOptionsConfirmation: false,
|
showUnsafeOptionsConfirmation: false,
|
||||||
showUnsafeAttackOptionsWarning: false,
|
|
||||||
showConfigExportModal: false,
|
showConfigExportModal: false,
|
||||||
showConfigImportModal: false
|
showConfigImportModal: false
|
||||||
};
|
};
|
||||||
|
@ -205,32 +204,6 @@ class ConfigurePageComponent extends AuthComponent {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
renderAttackAlertModal = () => {
|
|
||||||
return (<Modal show={this.state.showUnsubmittedConfigWarning} onHide={() => {
|
|
||||||
this.setState({showUnsubmittedConfigWarning: false})
|
|
||||||
}}>
|
|
||||||
<Modal.Body>
|
|
||||||
<h2>
|
|
||||||
<div className='text-center'>Warning</div>
|
|
||||||
</h2>
|
|
||||||
<p className='text-center' style={{'fontSize': '1.2em', 'marginBottom': '2em'}}>
|
|
||||||
You have unsubmitted changes. Submit them before proceeding.
|
|
||||||
</p>
|
|
||||||
<div className='text-center'>
|
|
||||||
<Button type='button'
|
|
||||||
className='btn btn-success'
|
|
||||||
size='lg'
|
|
||||||
style={{margin: '5px'}}
|
|
||||||
onClick={() => {
|
|
||||||
this.setState({showUnsubmittedConfigWarning: false})
|
|
||||||
}}>
|
|
||||||
Cancel
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
</Modal.Body>
|
|
||||||
</Modal>)
|
|
||||||
};
|
|
||||||
|
|
||||||
renderUnsafeOptionsConfirmationModal() {
|
renderUnsafeOptionsConfirmationModal() {
|
||||||
return (
|
return (
|
||||||
<UnsafeConfigOptionsConfirmationModal
|
<UnsafeConfigOptionsConfirmationModal
|
||||||
|
@ -402,7 +375,6 @@ class ConfigurePageComponent extends AuthComponent {
|
||||||
className={'main'}>
|
className={'main'}>
|
||||||
{this.renderConfigExportModal()}
|
{this.renderConfigExportModal()}
|
||||||
{this.renderConfigImportModal()}
|
{this.renderConfigImportModal()}
|
||||||
{this.renderAttackAlertModal()}
|
|
||||||
{this.renderUnsafeOptionsConfirmationModal()}
|
{this.renderUnsafeOptionsConfirmationModal()}
|
||||||
{this.renderUnsafeAttackOptionsWarningModal()}
|
{this.renderUnsafeAttackOptionsWarningModal()}
|
||||||
<h1 className='page-title'>Monkey Configuration</h1>
|
<h1 className='page-title'>Monkey Configuration</h1>
|
||||||
|
|
Loading…
Reference in New Issue