From e18d8c0fe77436b823c43f46d9015acf5c8d6165 Mon Sep 17 00:00:00 2001 From: Dillon Kearns Date: Thu, 19 Jan 2023 17:35:15 -0800 Subject: [PATCH] Add space after string. --- examples/end-to-end/script/src/AddForm.elm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/end-to-end/script/src/AddForm.elm b/examples/end-to-end/script/src/AddForm.elm index 7b2a61cd..2d9fc3c4 100644 --- a/examples/end-to-end/script/src/AddForm.elm +++ b/examples/end-to-end/script/src/AddForm.elm @@ -10,6 +10,7 @@ import Elm.Annotation import Elm.Case import Elm.Declare import Elm.Let +import Elm.Op import Gen.BackendTask import Gen.Basics import Gen.Debug @@ -193,7 +194,7 @@ formWithFields fields = (\label field -> Html.div [] [ Html.label [] - [ Html.call_.text label -- TODO concat with ` ++ " "` + [ Html.call_.text (Elm.Op.append label (Elm.string " ")) , field |> Gen.Form.FieldView.inputStyled [] , Elm.apply (Elm.val "errorsView") [ field ] ]