-
Notifications
You must be signed in to change notification settings - Fork 119
Description
As discovered in: #4502
We provide users with an ability to set a label and it doesn't seem to have an affect on the page rendered.
As an example we define one in lib/smart_answer_flows/calculate-your-holiday-entitlement/questions/shift_worker_hours_per_shift.govspeak.erb:
Lines 5 to 7 in d79d4d1
| <% render_content_for :label do %> | |
| Hours per shift | |
| <% end %> |
However when we view the page for it there doesn't seem to be any output of it.
I can see suffix labels seem to output:
Lines 9 to 11 in d79d4d1
| <% render_content_for :suffix_label do %> | |
| per week | |
| <% end %> |
but I'm not sure that is entirely right based on this example note:
Looks like this might be tied into 95f1463 where a string concatenation process was added that omitted label.
I think to resolve this issue we need to work out whether these inputs provide input. If so where do they go? if not we can delete them.
