mirror of
https://github.com/logseq/logseq.git
synced 2026-04-29 16:36:27 +00:00
fix: List properties out of order when contain more than 8 elements
This commit is contained in:
@@ -184,9 +184,9 @@
|
||||
v (if (and
|
||||
(string? v)
|
||||
(contains? #{:alias :aliases :tags} k))
|
||||
(set [v])
|
||||
[v]
|
||||
v)
|
||||
v (if (coll? v) (set v) v)]
|
||||
v (if (coll? v) (distinct v) v)]
|
||||
[k v])))
|
||||
(remove #(nil? (second %))))]
|
||||
{:properties (into {} properties)
|
||||
|
||||
Reference in New Issue
Block a user