Revert "fix: List properties out of order when contain more than 8 elements"

This reverts commit 6a8ab41d39.
This commit is contained in:
Andelf
2022-03-07 21:36:44 +08:00
parent 6a8ab41d39
commit 2e46a6bcb7
2 changed files with 3 additions and 3 deletions

View File

@@ -184,9 +184,9 @@
v (if (and
(string? v)
(contains? #{:alias :aliases :tags} k))
[v]
(set [v])
v)
v (if (coll? v) (distinct v) v)]
v (if (coll? v) (set v) v)]
[k v])))
(remove #(nil? (second %))))]
{:properties (into {} properties)