fix: unable to add a page :default property value

pull/11102/head
Gabriel Horner 2024-02-29 16:52:37 -05:00
parent f63c22b009
commit 0f531ff177
1 changed files with 5 additions and 4 deletions

View File

@ -35,10 +35,11 @@
[_old-state state]
(let [new-block (:block (first (:rum/args state)))
repo (state/get-current-repo)]
(when (not= (string/trim (state/get-edit-content))
(string/trim (:block/content new-block)))
(util/set-change-value (state/get-input)
(block-handler/sanity-block-content repo (get new-block :block/format :markdown) (:block/content new-block)))))
(when (not= (some-> (state/get-edit-content) string/trim)
(some-> (:block/content new-block) string/trim))
(when-let [input (state/get-input)]
(util/set-change-value input
(block-handler/sanity-block-content repo (get new-block :block/format :markdown) (:block/content new-block))))))
(keyboards-handler/esc-save! state)
state)