From c336cbe8ab5c42e5a302cc5f09e2b6c66a3b63c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bel=C3=A9n=20Albeza?= Date: Tue, 13 Feb 2024 12:01:35 +0100 Subject: [PATCH] :bug: Fix text transform buttons order --- .../ui/workspace/sidebar/options/menus/typography.cljs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/src/app/main/ui/workspace/sidebar/options/menus/typography.cljs b/frontend/src/app/main/ui/workspace/sidebar/options/menus/typography.cljs index f759c634a6..5f945a4062 100644 --- a/frontend/src/app/main/ui/workspace/sidebar/options/menus/typography.cljs +++ b/frontend/src/app/main/ui/workspace/sidebar/options/menus/typography.cljs @@ -409,14 +409,14 @@ :type "checkbox" :value "uppercase" :id "text-transform-uppercase"}] - [:& radio-button {:icon i/text-lowercase-refactor - :type "checkbox" - :value "lowercase" - :id "text-transform-lowercase"}] [:& radio-button {:icon i/text-mixed-refactor :type "checkbox" :value "capitalize" - :id "text-transform-capitalize"}]]])) + :id "text-transform-capitalize"}] + [:& radio-button {:icon i/text-lowercase-refactor + :type "checkbox" + :value "lowercase" + :id "text-transform-lowercase"}]]])) (mf/defc text-options {::mf/wrap-props false}