mirror of
https://github.com/logseq/logseq.git
synced 2026-04-26 15:15:01 +00:00
fix: onboarding condition
This commit is contained in:
@@ -244,9 +244,13 @@
|
||||
:assets assets
|
||||
:bindings bindings})))))
|
||||
(defn should-populate-onboarding-whiteboard?
|
||||
"When there is not whiteboard, or there is only whiteboard that is the given page name, we should populate the onboarding whiteboard"
|
||||
[page-name]
|
||||
(let [whiteboards (model/get-all-whiteboards (state/get-current-repo))]
|
||||
(and (or (empty? whiteboards) (some #(= page-name (:block/name %)) whiteboards))
|
||||
(and (or (empty? whiteboards)
|
||||
(and
|
||||
(= 1 (count whiteboards))
|
||||
(= page-name (:block/name (first whiteboards)))))
|
||||
(not (state/get-onboarding-whiteboard?)))))
|
||||
|
||||
(defn populate-onboarding-whiteboard
|
||||
|
||||
Reference in New Issue
Block a user