fix: remove entity db/id from tx-data

This commit is contained in:
Tienson Qin
2025-11-21 00:32:56 +08:00
parent e311e1b85c
commit c4c4634bee
2 changed files with 8 additions and 2 deletions

View File

@@ -855,7 +855,11 @@
(defn- create-page!
[repo conn title options]
(let [config (worker-state/get-config repo)]
(worker-page/create! repo conn config title options)))
(try
(worker-page/create! repo conn config title options)
(catch :default e
(js/console.error e)
(throw e)))))
(defn- outliner-register-op-handlers!
[]