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

...
Kai Reinhard
15.41.2018 2affa1a03f8f4713c6d7dad936f3d494179f7e6e
borgbutler-webapp/src/components/views/repos/ArchiveView.jsx
@@ -8,8 +8,8 @@
class ArchiveView extends React.Component {
    state = {
        repo: this.props.match.params.repoId,
        archive: this.props.match.params.archiveId,
        repoId: this.props.match.params.repoId,
        archiveId: this.props.match.params.archiveId,
        isFetching: false,
        activeTab: '1',
    };
@@ -25,8 +25,8 @@
            failed: false
        });
        fetch(getRestServiceUrl('repos/archive', {
            repo: this.state.repo,
            archive: this.state.archive,
            repo: this.state.repoId,
            archive: this.state.archiveId,
            force: force
        }), {
            method: 'GET',