mirror of
https://git.rwth-aachen.de/acs/public/villas/web/
synced 2025-03-09 00:00:01 +01:00
increase dialog size for signal editing, see #246
This commit is contained in:
parent
e1e9c61c64
commit
7a065ea5c5
2 changed files with 3 additions and 2 deletions
|
@ -46,7 +46,7 @@ class Dialog extends React.Component {
|
|||
|
||||
render() {
|
||||
return (
|
||||
<Modal keyboard show={this.props.show} onEnter={this.props.onReset} onHide={this.cancelModal} onKeyPress={this.onKeyPress}>
|
||||
<Modal size={this.props.size || 'sm'} keyboard show={this.props.show} onEnter={this.props.onReset} onHide={this.cancelModal} onKeyPress={this.onKeyPress}>
|
||||
<Modal.Header>
|
||||
<Modal.Title>{this.props.title}</Modal.Title>
|
||||
</Modal.Header>
|
||||
|
|
|
@ -164,7 +164,8 @@ class EditSignalMapping extends React.Component {
|
|||
blendOutCancel = {true}
|
||||
onClose={(c) => this.onClose(c)}
|
||||
onReset={() => this.resetState()}
|
||||
valid={true}>
|
||||
valid={true}
|
||||
size='lg'>
|
||||
|
||||
<FormGroup>
|
||||
<FormLabel>{this.props.direction} Mapping</FormLabel>
|
||||
|
|
Loading…
Add table
Reference in a new issue