diff --git a/src/main/frontend/components/encryption.cljs b/src/main/frontend/components/encryption.cljs index c3fe939db1..fc108f4fd7 100644 --- a/src/main/frontend/components/encryption.cljs +++ b/src/main/frontend/components/encryption.cljs @@ -14,7 +14,7 @@ [*show-password?] [:div.flex.flex-row.items-center [:label.px-1 {:for "show-password"} - (ui/checkbox {:checked? @*show-password? + (ui/checkbox {:checked @*show-password? :on-change (fn [e] (reset! *show-password? (util/echecked? e))) :id "show-password"})