diff --git a/src/uxbox/main/ui/shapes/group.cljs b/src/uxbox/main/ui/shapes/group.cljs index cd70d3d9f7..9a1996d759 100644 --- a/src/uxbox/main/ui/shapes/group.cljs +++ b/src/uxbox/main/ui/shapes/group.cljs @@ -71,7 +71,8 @@ (attrs/extract-style-attrs shape) (attrs/make-debug-attrs shape))] [:g attrs - (for [item items :let [key (str item)]] + (for [item (reverse items) + :let [key (str item)]] (-> (factory item) (mx/with-key key)))]))