From 946f978e10cc0433ab1546e7e8c91677bdf1da62 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 8 Apr 2020 13:04:50 +0200 Subject: [PATCH] :lipstick: Show icons sorted on the debug view. --- frontend/src/uxbox/builtins/icons.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/uxbox/builtins/icons.cljs b/frontend/src/uxbox/builtins/icons.cljs index 127a9c627..5636956f1 100644 --- a/frontend/src/uxbox/builtins/icons.cljs +++ b/frontend/src/uxbox/builtins/icons.cljs @@ -104,7 +104,7 @@ {::mf/wrap-props false} [props] [:section.debug-icons-preview - (for [[key val] (ns-publics 'uxbox.builtins.icons)] + (for [[key val] (sort-by first (ns-publics 'uxbox.builtins.icons))] (when (not= key 'debug-icons-preview) [:div.icon-item {:key key} (deref val)