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

fix for bsStyle error in delete dialog

This commit is contained in:
Sonja Happ 2019-07-24 16:54:42 +02:00
parent 3f926d1e94
commit d4c1f3cbcc

View file

@ -43,7 +43,7 @@ class DeleteDialog extends React.Component {
<Modal.Footer>
<Button onClick={() => this.props.onClose(false)}>Cancel</Button>
<Button bsStyle="danger" onClick={() => this.props.onClose(true)}>Delete</Button>
<Button variant="danger" onClick={() => this.props.onClose(true)}>Delete</Button>
</Modal.Footer>
</Modal>;
}