0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-13 16:21:57 -05:00

🐛 Disable autocomplete color names

This commit is contained in:
Andrés Moya 2021-04-23 13:17:26 +02:00 committed by Alonso Torres
parent c16434e608
commit 5e73e68ef7

View file

@ -86,20 +86,22 @@
(apply-value new-value)
(update-input value)))))
list-id (str "colors-" (uuid/next))
;; list-id (str "colors-" (uuid/next))
props (-> props
(obj/without ["value" "onChange"])
(obj/set! "type" "text")
(obj/set! "ref" ref)
(obj/set! "list" list-id)
;; (obj/set! "list" list-id)
(obj/set! "defaultValue" value)
(obj/set! "onKeyDown" handle-key-down)
(obj/set! "onBlur" handle-blur))]
[:*
[:> :input props]
[:datalist {:id list-id}
(for [color-name uc/color-names]
[:option color-name])]]))
;; FIXME: this causes some weird interactions because of using apply-value
;; [:datalist {:id list-id}
;; (for [color-name uc/color-names]
;; [:option color-name])]
]))