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

Kai Reinhard
05.21.2019 172a5c10b74d5e4152fc21fbf9695d599043804a
borgbutler-webapp/src/components/views/jobs/Job.jsx
@@ -1,5 +1,6 @@
import React from 'react';
import {Progress} from 'reactstrap';
import {IconCancelJob} from '../../general/IconComponents'
function Job({job}) {
    let content = undefined;
@@ -11,7 +12,7 @@
    return (
        <div>
            <div>{job.description}</div>
            {content}
            <div>{content}<IconCancelJob /></div>
        </div>
    )
}