From a81d20a2d1f45fdd311c5ad7058b5cfb2696d20e Mon Sep 17 00:00:00 2001 From: "alonso.torres" Date: Fri, 12 Feb 2021 12:14:31 +0100 Subject: [PATCH] :bug: Fixes console error for kebab-case properties --- frontend/src/app/main/ui/shapes/text/styles.cljs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/src/app/main/ui/shapes/text/styles.cljs b/frontend/src/app/main/ui/shapes/text/styles.cljs index 509647beb..208dbf65b 100644 --- a/frontend/src/app/main/ui/shapes/text/styles.cljs +++ b/frontend/src/app/main/ui/shapes/text/styles.cljs @@ -45,11 +45,11 @@ auto-height? (= grow-type :auto-height) base #js {:display "inline-flex" - :flex-direction "column" - :justify-content "inherit" - :min-height (when-not (or auto-width? auto-height?) "100%") - :min-width (when-not auto-width? "100%") - :vertical-align "top"}] + :flexDirection "column" + :justifyContent "inherit" + :minHeight (when-not (or auto-width? auto-height?) "100%") + :minWidth (when-not auto-width? "100%") + :verticalAlign "top"}] base))) (defn generate-paragraph-styles