canonical / test_observer

Flutter based dashboard for visualising SRU regression test results
2 stars 2 forks source link

Checkbox labels are not clickable #143

Open pieqq opened 3 months ago

pieqq commented 3 months ago

When clicking on a label associated to a checkbox in the Assignees or Status sections, nothing happens:

image

In usual HTML forms, a <label> field is used so that clicking on this label will tick or untick the checkbox. You can see an example of this in C3 for instance:

https://certification.canonical.com/hardware/202302-31221/edit/

If you click on "In OIL", it will tick/untick the checkbox. This is achieved with

<label for="id_in_oil">In OIL:</label> <input type="checkbox" name="in_oil" id="id_in_oil">