From 91a50d0c4cbe898c4b5925b03b6601ac10c80b91 Mon Sep 17 00:00:00 2001 From: Roman Volosovskyi Date: Tue, 2 Oct 2018 09:20:46 +0300 Subject: [PATCH] [#4779] fix Bootnodes are shown as enabled when they are not --- src/status_im/ui/screens/profile/components/views.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/status_im/ui/screens/profile/components/views.cljs b/src/status_im/ui/screens/profile/components/views.cljs index 86abc6730c..b7c7b60e42 100644 --- a/src/status_im/ui/screens/profile/components/views.cljs +++ b/src/status_im/ui/screens/profile/components/views.cljs @@ -103,6 +103,6 @@ [react/view styles/settings-item-text-wrapper [react/i18n-text {:style styles/settings-item-text :key label-kw}]] [react/switch {:on-tint-color colors/blue - :value value + :value (boolean value) :on-value-change action-fn :disabled (not active?)}]])