diff --git a/frontend/src/app/main/ui/workspace/presence.cljs b/frontend/src/app/main/ui/workspace/presence.cljs index 62d128ba2..393e4fa82 100644 --- a/frontend/src/app/main/ui/workspace/presence.cljs +++ b/frontend/src/app/main/ui/workspace/presence.cljs @@ -21,8 +21,8 @@ [{:keys [session profile index] :as props}] (let [profile (assoc profile :color (:color session))] [:li {:class (stl/css :session-icon) - :style #js {"zIndex" (str (or (+ 1 (* -1 index)) 0)), - "background-color" (:color session)} + :style {:z-index (str (or (+ 1 (* -1 index)) 0)) + :background-color (:color session)} :title (:fullname profile)} [:img {:alt (:fullname profile) :style {:background-color (:color session)}