From 84e9ee2a519872bf79307ad71af7a43594c1c432 Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Sat, 27 Jul 2019 20:35:41 +0200 Subject: [PATCH] Fix placeholder --- 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 749c055..0175308 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 (hostname ++ "////"), disabled True, value (displayMUrl state.parsed) ]) [] ] ]