diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2018-01-08 09:38:03 +0000 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2018-01-08 09:39:35 +0000 |
commit | 32be970f9519cda5ba3670e97ee6f243d159a54f (patch) | |
tree | 5024b9d59a1d21fd43da2ea57b04588cbd38f9ea | |
parent | 0992ff2903e60f0a2c267dd024b0049bb7c5f1b7 (diff) |
Add missing class on last questionnaire question.
This was somehow missed from 163c65cf.
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | templates/web/base/questionnaire/index.html | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 82c86bffd..0ec5dddfa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ - Fix issue with red bars on bar graph of many categories. - Prefetch translations in /reports list of bodies. - Ignore deleted/area-less bodies in dashboard list. + - Add missing CSS class from final questionnaire question. - UK: - Lazy load images in the footer. diff --git a/templates/web/base/questionnaire/index.html b/templates/web/base/questionnaire/index.html index 84a9d7efd..12ca36cf2 100644 --- a/templates/web/base/questionnaire/index.html +++ b/templates/web/base/questionnaire/index.html @@ -101,9 +101,9 @@ <p>[% loc('Would you like to receive another questionnaire in 4 weeks, reminding you to check the status?') %]</p> <p class="segmented-control segmented-control--radio"> <input type="radio" name="another" id="another_yes" value="Yes"[% ' checked' IF another == 'Yes' %]> - <label for="another_yes">[% loc('Yes') %]</label> + <label class="btn" for="another_yes">[% loc('Yes') %]</label> <input type="radio" name="another" id="another_no" value="No"[% ' checked' IF another == 'No' %]> - <label for="another_no">[% loc('No') %]</label> + <label class="btn" for="another_no">[% loc('No') %]</label> </p> </div> |