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

...
Kai Reinhard
10.24.2018 092a9150d6a63afcfd73ab18f91dfb6256a48a55
borgbutler-webapp/src/components/views/repos/RepoListView.jsx
@@ -33,11 +33,11 @@
        })
            .then(response => response.json())
            .then(json => {
                const repos = json.repos.map(repo => {
                const repos = json.map(repo => {
                    return {
                        id: repo.id,
                        name: repo.name,
                        location: repo.location,
                        lastModified: repo.last_modified
                    };
                });