mirror of https://github.com/micromata/borgbackup-butler.git

Kai Reinhard
06.43.2019 8634afa1a42a3722d4ac61d4ce7765857797fd57
borgbutler-webapp/src/components/views/jobs/Job.jsx
@@ -1,6 +1,6 @@
import React from 'react';
import {Redirect} from 'react-router-dom';
import {Button, Card, CardBody, Collapse, Progress} from 'reactstrap';
import {Button, Card, CardBody, Collapse, ListGroupItem, Progress} from 'reactstrap';
import {IconCancel} from '../../general/IconComponents'
import {getRestServiceUrl} from "../../../utilities/global";
import PropTypes from "prop-types";
@@ -56,7 +56,7 @@
            cancelDisabled = true;
        }
        return (
            <div>
            <ListGroupItem>
                {this.renderRedirect()}
                <Button color="link" onClick={this.toggle}>{job.description}</Button>
                <div>{content}
@@ -81,7 +81,7 @@
                        </CardBody>
                    </Card>
                </Collapse>
            </div>
            </ListGroupItem>
        )
    }
}