Skip to content
Snippets Groups Projects
Commit 38d7eaab authored by Romain Tartière's avatar Romain Tartière
Browse files

[FIX] web: Adjust label#for to match input#id


The #for attribute of the LABEL tag should match the #id of the INPUT
tag, not it's #name.

This regression was introduced in a1716946

closes odoo/odoo#73107

Signed-off-by: default avatarRomain Tartière <romain@vittoriaconseil.com>
Signed-off-by: default avatarSimon Genin (ges@odoo) <ges@odoo.com>
parent ac409ec9
No related branches found
No related tags found
No related merge requests found
......@@ -119,7 +119,7 @@
</div>
</div>
<div class="form-group row">
<label for="demo" class="col-md-4 col-form-label">Demo data</label>
<label for="load_demo_checkbox" class="col-md-4 col-form-label">Demo data</label>
<div class="col-md-8">
<input type="checkbox" id="load_demo_checkbox" class="form-control-sm" name="demo" value="1">
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment