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

Kai Reinhard
20.51.2018 5275ba80b6ac6c3a38494279ad4ff4d5b421b9c2
borgbutler-webapp/src/components/views/archives/FileListTable.jsx
@@ -5,10 +5,6 @@
function FileListTable({archiveId, diffArchiveId, entries, search, mode, changeCurrentDirectory}) {
    const lowercaseSearch = search.split(' ')[0].toLowerCase();
    let diffCol = undefined;
    if (diffArchiveId) {
        diffCol = <th>Modification</th>;
    }
    return (
        <Table striped bordered hover size={'sm'} responsive>
            <thead>
@@ -18,7 +14,6 @@
                <th>Size</th>
                <th>Mode</th>
                <th>Modified time</th>
                {diffCol}
            </tr>
            </thead>
            <tbody>