From 353bdd77aa5932a73f7856e82d51241c0b2be7a7 Mon Sep 17 00:00:00 2001 From: "mathieu.brunot" Date: Tue, 19 Feb 2019 02:30:32 +0100 Subject: [PATCH] :bug: Fix group name of notification page --- frontend/src/uxbox/main/ui/settings/notifications.cljs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/uxbox/main/ui/settings/notifications.cljs b/frontend/src/uxbox/main/ui/settings/notifications.cljs index 287c0a2f6..727909b56 100644 --- a/frontend/src/uxbox/main/ui/settings/notifications.cljs +++ b/frontend/src/uxbox/main/ui/settings/notifications.cljs @@ -28,19 +28,19 @@ [:div.input-radio.radio-primary [:input {:type "radio" :id "notification-1" - :name "notification-1" + :name "notification" :value "none"}] [:label {:for "notification-1" :value "None"} "None"] [:input {:type "radio" :id "notification-2" - :name "notification-2" + :name "notification" :value "every-hour"}] [:label {:for "notification-2" :value "Every hour"} "Every hour"] [:input {:type "radio" :id "notification-3" - :name "notification-3" + :name "notification" :value "every-day"}] [:label {:for "notification-3" :value "Every day"} "Every day"]] [:input.btn-primary {:type "submit" :value "Update settings"}]