浏览代码

fix(plugin): enter to break line not work for textarea settings item

charlie 3 年之前
父节点
当前提交
efbd8d0027
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      src/main/frontend/components/plugins_settings.cljs

+ 1 - 0
src/main/frontend/components/plugins_settings.cljs

@@ -29,6 +29,7 @@
        {:class        (util/classnames [{:form-input (not (contains? #{:color :range} input-as))}])
         :type         (name input-as)
         :defaultValue (or val default)
+        :on-key-down  #(.stopPropagation %)
         :on-change    (debounce #(update-setting! key (util/evalue %)) 1000)}])]])
 
 (rum/defc render-item-toggle