diff --git a/hshassets/forms/utils.py b/hshassets/forms/utils.py
index 8bd4dc80d9e66923be0df9e98147dd8b86905a5f..c7bc8809a179374f2e8d2feaca6759f1a1a0ae6f 100644
--- a/hshassets/forms/utils.py
+++ b/hshassets/forms/utils.py
@@ -100,7 +100,8 @@ class BulmaFieldMarkup(object):
         choice_markup = ''
         for choice in field:
             choice_markup += cls.label(
-                choice.tag(), choice.choice_label.title(),
+                # concat input field and label here to make the label clickable
+                label=mark_safe('{} {}'.format(choice.tag(), choice.choice_label.title())),
                 for_id=choice.id_for_label, css_class='radio'
             )
         return cls.div_control(mark_safe(choice_markup))
diff --git a/setup.py b/setup.py
index 37a9e4daeb8fcf1e17a3b0f2df5d27f146349b5d..0656a0dc3852f554fd7b1e9092df682766ca3ca6 100644
--- a/setup.py
+++ b/setup.py
@@ -7,7 +7,7 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
 
 setup(
     name='django-hshassets',
-    version='1.4.2',
+    version='1.4.3',
     packages=find_packages(),
     include_package_data=True,
     license='MIT License',