1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/web/ synced 2025-03-09 00:00:01 +01:00

remove vertical gap below component config table if action command bar is not showing

This commit is contained in:
Sonja Happ 2021-05-27 10:26:38 +02:00
parent b56c94f286
commit 72972db21b

View file

@ -402,7 +402,7 @@ class ConfigTable extends Component {
</Table>
{this.state.ExternalICInUse ?
<div style={{ float: 'left' }}>
<div style={{ float: 'left', clear: 'both' }}>
<ICAction
ics={this.props.ics}
configs={this.props.configs}
@ -416,11 +416,9 @@ class ConfigTable extends Component {
{ id: '3', title: 'Resume', data: { action: 'resume' } }
]} />
</div>
: <div />
: <div/>
}
<div style={{ clear: 'both' }} />
<EditConfigDialog
show={this.state.editConfigModal}
onClose={data => this.closeEditConfigModal(data)}