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

...
Kai Reinhard
13.57.2018 f4ea467ef335b255d57710127559644f77f67a3a
borgbutler-webapp/src/components/views/repos/RepoListView.jsx
@@ -19,13 +19,13 @@
        this.fetchRepos();
    };
    fetchRepos = () => {
    fetchRepos = (force) => {
        this.setState({
            isFetching: true,
            failed: false,
            repos: undefined
        });
        fetch(`${this.path}/list`, {
        fetch(`${this.path}/list?force=${force}`, {
            method: 'GET',
            headers: {
                'Accept': 'application/json'
@@ -73,7 +73,7 @@
            content = <React.Fragment>
                <div
                    className={'btn btn-outline-primary refresh-button-right'}
                    onClick={this.fetchRepos}
                    onClick={this.fetchRepos.bind(this, true)}
                >
                    <IconRefresh/>
                </div>