Increase content-max-length to 10k

pull/6821/head^2
Tienson Qin 2022-09-30 11:55:18 +08:00
parent 29c1173259
commit 937a22c7ba
2 changed files with 2 additions and 2 deletions

View File

@ -588,7 +588,7 @@ Similar to re-frame subscriptions"
(defn block-content-max-length
[repo]
(or (:block/content-max-length (sub-config repo)) 5000))
(or (:block/content-max-length (sub-config repo)) 10000))
(defn mobile?
[]

View File

@ -121,7 +121,7 @@
;; Block content larger than `block/content-max-length` will not be searchable
;; or editable for performance.
:block/content-max-length 5000
:block/content-max-length 10000
;; Whether to show command doc on hover
:ui/show-command-doc? true