summaryrefslogtreecommitdiff
path: root/elm/Lib
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2020-07-08 14:28:06 +0200
committerYorhel <git@yorhel.nl>2020-07-08 14:28:06 +0200
commit378768fcf7df9524f84d3bbb3a133766c7395726 (patch)
treebae191f10a70c203b5b5c9b0d046ce50e999ea69 /elm/Lib
parentf102034bfdc068b6fd002a90b7ffc36c164a9215 (diff)
VN::Edit: Support adding new VNs
Diffstat (limited to 'elm/Lib')
-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 13aacb5f..30a8ee29 100644
--- a/elm/Lib/Autocomplete.elm
+++ b/elm/Lib/Autocomplete.elm
@@ -127,7 +127,7 @@ traitSource =
vnSource : SourceConfig m GApi.ApiVNResult
vnSource =
- { source = Endpoint (\s -> GV.send { search = s })
+ { source = Endpoint (\s -> GV.send { search = [s], hidden = False })
<| \x -> case x of
GApi.VNResult e -> Just e
_ -> Nothing