summaryrefslogtreecommitdiff
path: root/elm/Lib
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2020-07-19 15:53:28 +0200
committerYorhel <git@yorhel.nl>2020-07-19 15:53:30 +0200
commit52634340d6bad16e0ba922961a334354961bf9a0 (patch)
tree237dec5625979d8d9c0e10dd1299ce45796b8a71 /elm/Lib
parentd7767fa0f907e7b2a0a3d879d9000fa137bd81db (diff)
Producers::Edit: v2rw rewrite producer add/edit form
The copy-pasting here is ridiculous. But at the same time, that did allow me to quickly rewrite the form in a single commit. Here's hoping I didn't introduce too many copy-paste errors.
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 30a8ee29..5c5dd33d 100644
--- a/elm/Lib/Autocomplete.elm
+++ b/elm/Lib/Autocomplete.elm
@@ -140,7 +140,7 @@ vnSource =
producerSource : SourceConfig m GApi.ApiProducerResult
producerSource =
- { source = Endpoint (\s -> GP.send { search = s })
+ { source = Endpoint (\s -> GP.send { search = [s], hidden = False })
<| \x -> case x of
GApi.ProducerResult e -> Just e
_ -> Nothing