fix: block reference auto-complete not working

This commit is contained in:
Tienson Qin
2021-02-14 22:21:43 +08:00
parent bd2b6e112c
commit 81d7c74b10
3 changed files with 34 additions and 19 deletions

View File

@@ -1075,6 +1075,14 @@
[]
(:nfs/refreshing? @state))
(defn set-search-result!
[value]
(set-state! :search/result value))
(defn clear-search-result!
[]
(set-search-result! nil))
;; TODO: Move those to the uni `state`
(defonce editor-op (atom nil))