mirror of
https://github.com/penpot/penpot.git
synced 2025-01-09 08:20:45 -05:00
🐛 Fix problem with select method
This commit is contained in:
parent
9df6de2673
commit
471c9d5526
1 changed files with 1 additions and 1 deletions
|
@ -234,7 +234,7 @@
|
|||
|
||||
(defn select-text!
|
||||
[^js node]
|
||||
(when (some? node)
|
||||
(when (and (some? node) (or (= "INPUT" (.-tagName node)) (= "TEXTAREA" (.-tagName node))))
|
||||
(.select ^js node)))
|
||||
|
||||
(defn ^boolean equals?
|
||||
|
|
Loading…
Reference in a new issue