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

Kai Reinhard
18.30.2018 751014a813154f9731e5cff9559d803d3383c90d
Column order (optimized for tree browsing).
2 files modified
14 ■■■■ changed files
borgbutler-webapp/src/components/views/archives/FileListEntry.jsx 8 ●●●● patch | view | raw | blame | history
borgbutler-webapp/src/components/views/archives/FileListTable.jsx 6 ●●●● patch | view | raw | blame | history
borgbutler-webapp/src/components/views/archives/FileListEntry.jsx
@@ -42,14 +42,14 @@
    }
    return (
        <tr>
            <td className={'tt'}>{entry.mode}</td>
            <td className={'tt'}>{entry.mtime}</td>
            <td className={'tt'}>{humanFileSize(entry.size, true, true)}</td>
            <td className={'tt'}>{path}</td>
            <td className={'tt'}>
                <div className={'btn'} onClick={() => download(archiveId, entry.fileNumber)}>
                    <IconDownload/></div>
            </td>
            <td className={'tt'}>{path}</td>
            <td className={'tt'}>{humanFileSize(entry.size, true, true)}</td>
            <td className={'tt'}>{entry.mode}</td>
            <td className={'tt'}>{entry.mtime}</td>
        </tr>
    );
}
borgbutler-webapp/src/components/views/archives/FileListTable.jsx
@@ -9,11 +9,11 @@
        <Table striped bordered hover size={'sm'} responsive>
            <thead>
            <tr>
                <th>Path</th>
                <th></th>
                <th>Size</th>
                <th>Mode</th>
                <th>Modified time</th>
                <th>Size</th>
                <th></th>
                <th>Path</th>
            </tr>
            </thead>
            <tbody>