summaryrefslogtreecommitdiff
path: root/elm
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2020-10-28 14:05:22 +0100
committerYorhel <git@yorhel.nl>2020-10-28 14:05:35 +0100
commit369445d7c395bbeb1bb073a139483131a80659f9 (patch)
treebeb5da37ca9f0d01cc1413e2d21c16b28c3bac73 /elm
parentea84d8820b806a0258d89558922f5c86a4ae679f (diff)
Fix Autocomplete dropdown styling
Broken in 960946ac90a8da32953a4a21128d993f2049f8d1 https://vndb.org/t2520.506
Diffstat (limited to 'elm')
-rw-r--r--elm/Lib/Autocomplete.elm2
1 files changed, 1 insertions, 1 deletions
diff --git a/elm/Lib/Autocomplete.elm b/elm/Lib/Autocomplete.elm
index 5c5dd33d..ad7c4ae3 100644
--- a/elm/Lib/Autocomplete.elm
+++ b/elm/Lib/Autocomplete.elm
@@ -340,7 +340,7 @@ view cfg model attrs =
)
in div [ class "elm_dd", class "search", style "width" "300px" ]
- [ div [ classList [("hidden", not visible)] ] [ Keyed.node "ul" [] <| msg ++ List.map item model.results ]
+ [ div [ classList [("hidden", not visible)] ] [ div [] [ Keyed.node "ul" [] <| msg ++ List.map item model.results ] ]
, input
, span [ class "spinner", classList [("hidden", not model.loading)] ] []
]