From d8f061ecad0a18f4888ccb45d1d8939b3c09e0dc Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Sat, 27 Jul 2019 20:34:25 +0200 Subject: [PATCH] Fix string concat --- frontend/src/Main.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/Main.elm b/frontend/src/Main.elm index 56ae83f..749c055 100644 --- a/frontend/src/Main.elm +++ b/frontend/src/Main.elm @@ -95,7 +95,7 @@ view state = , br [] [] , renderMUrl state.parsed ] - , input (myStyle2 [ placeholder "https://" ++ hostname ++ "/////", disabled True, value (displayMUrl state.parsed) ]) [] + , input (myStyle2 [ placeholder ("https://" ++ hostname ++ "/////"), disabled True, value (displayMUrl state.parsed) ]) [] ] ]