From 005cf1d52b6f7211e699521b94b71dbebad8bbf8 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Wed, 19 Aug 2020 17:40:12 -0400 Subject: [PATCH] fix url creation typo --- ui/page/show/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/page/show/index.js b/ui/page/show/index.js index cb91e0e36..a00330080 100644 --- a/ui/page/show/index.js +++ b/ui/page/show/index.js @@ -31,7 +31,7 @@ const select = (state, props) => { if (googleCachedUrl) { const actualUrl = decodeURIComponent(googleCachedUrl); if (actualUrl) { - path = actualUrl; + path = actualUrl.replace(/:/g, '#'); } } }