aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui
diff options
context:
space:
mode:
authorLibravatar haraldox <hnaumann+github@gmail.com>2018-02-02 11:01:38 +0100
committerLibravatar haraldox <hnaumann+github@gmail.com>2018-02-02 11:01:38 +0100
commitf74d47acb7ee470e24245667c9195604faa66a20 (patch)
tree1f441a5acbf1e8661f47a8cf5ca8bc30493d5724 /src/components/ui
parent[WIP] started work on infobox (diff)
downloadferdium-app-f74d47acb7ee470e24245667c9195604faa66a20.tar.gz
ferdium-app-f74d47acb7ee470e24245667c9195604faa66a20.tar.zst
ferdium-app-f74d47acb7ee470e24245667c9195604faa66a20.zip
got server callback and infobox working
Diffstat (limited to 'src/components/ui')
-rw-r--r--src/components/ui/Link.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/ui/Link.js b/src/components/ui/Link.js
index aabb9e0a6..b09ef026e 100644
--- a/src/components/ui/Link.js
+++ b/src/components/ui/Link.js
@@ -35,7 +35,9 @@ export default class Link extends Component {
35 filter = `${to}`; 35 filter = `${to}`;
36 } 36 }
37 37
38 const match = matchRoute(filter, router.location.pathname + router.location.search); 38 const match = matchRoute(filter, router.location.pathname);
39
40 console.log(filter, strictFilter, router.location.pathname, router.location.search, match)
39 41
40 const linkClasses = classnames({ 42 const linkClasses = classnames({
41 [`${className}`]: true, 43 [`${className}`]: true,