Skip to content
Snippets Groups Projects
Commit 02703f8d authored by Mattia Mancini's avatar Mattia Mancini
Browse files

OSB-35: fix link to the image in the modal window

parent 8544cd6d
No related branches found
No related tags found
2 merge requests!89Monitoring maintenance Epic branch merge,!1Resolve OSB-13 "Monitoringmaintenance "
......@@ -25,7 +25,7 @@ class StationTestChildViewC extends Component {
state = {
modal: false,
modal_url: ""
modalUrl: ""
};
imgLoadTimeout = {}
......@@ -155,7 +155,7 @@ class StationTestChildViewC extends Component {
<Modal isOpen={this.state.modal} fade={false} size="lg" toggle={this.toggle} className={this.props.className}>
<ModalHeader toggle={this.toggleModal}></ModalHeader>
<ModalBody>
<img style={{width: '100%'}} src={this.state.modal_url} alt="Not present" />
<img style={{width: '100%'}} src={this.state.modalUrl} alt="Not present" />
</ModalBody>
</Modal>
</div>;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment