Run elm-format on 2 more vendored files.

This commit is contained in:
Dillon Kearns 2021-05-23 16:04:28 -07:00
parent 9e26715ca4
commit fda8d7ff75
2 changed files with 5 additions and 2 deletions

View File

@ -130,7 +130,9 @@ nodeRecordToString options { tag, children, facts } =
Dict.toList facts.boolAttributes
|> List.map
(\( k, v ) ->
"Html.Attributes.property \"" ++ k ++ "\" <| Json.Encode.bool "
"Html.Attributes.property \""
++ k
++ "\" <| Json.Encode.bool "
++ (if v then
"True"

View File

@ -133,7 +133,8 @@ nodeRecordToString options { tag, children, facts } =
Dict.toList facts.boolAttributes
|> List.map
(\( k, v ) ->
k ++ "="
k
++ "="
++ (if v then
"true"