diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,9 @@
 # Changelog for vega-view
 
+## 0.2.0.1
+
+Internal change to get it to build with ghc 8.2 and 8.0.
+
 ## 0.2
 
 The directory view now displays all the visualizations in a directory,
diff --git a/app/Main.hs b/app/Main.hs
--- a/app/Main.hs
+++ b/app/Main.hs
@@ -196,7 +196,7 @@
 embedLink :: FilePath -> FilePath -> H.Html
 embedLink indir infile =
   let toHref = H.toValue ("/embed" </> indir </> infile)
-      hdlr = "embed('" <> toHref <> "');"
+      hdlr = mconcat [ "embed('", toHref, "');" ]
 
   in (H.a ! A.href "#" ! A.onclick hdlr) (H.toHtml infile)
 
diff --git a/vega-view.cabal b/vega-view.cabal
--- a/vega-view.cabal
+++ b/vega-view.cabal
@@ -1,5 +1,5 @@
 name:           vega-view
-version:        0.2.0.0
+version:        0.2.0.1
 description:    Please see the README on GitHub at <https://github.com/DougBurke/vega-view#readme>
 homepage:       https://github.com/DougBurke/vega-view#readme
 bug-reports:    https://github.com/DougBurke/vega-view/issues
