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

Kai Reinhard
22.11.2019 c24c3f945abd2fe4c6780d66e8a46447e13602aa
borgbutler-webapp/src/components/views/archives/BreadcrumbPath.jsx
@@ -2,6 +2,8 @@
import {Link, Route} from 'react-router-dom';
import {BreadcrumbItem} from 'reactstrap';
// Attention: Recursive Call
// https://reacttraining.com/react-router/web/example/recursive-paths
function BreadcrumbPath({match}) {
    return (
        <React.Fragment>
@@ -13,11 +15,6 @@
            <Route
                path={`${match.url}/:path`}
                component={BreadcrumbPath}
                /*
                render={props =>
                    <BreadcrumbPath {...props} match={match} changeCurrentDirectory={changeCurrentDirectory} />
                }
                */
            />
        </React.Fragment>
    )