Bug #17752
openLabels on 'New Sync Plan' page have empty 'for' attribute
Description
Cloned from BZ:
Description of problem:
Labels on 'New Sync Plan' page (e.g. 'Name', 'Description') have empty 'for' attribute, like this:
<label class="control-label col-sm-2 ng-binding" for="">Name</label>
Other pages have this attribute set to label name ("name", "description", etc). For example, here's label from 'New Host' page:
<label class="col-md-2 control-label" for="name">Name *</label>
That 'for' attribute is commonly used by our automation to determine the label so it would be great to make 'New Sync Plan' page consistent with the rest of pages.
Version-Release number of selected component (if applicable):
Sat 6.1 GA snap 8
How reproducible:
Always
Steps to Reproduce:
1. Go to Content -> Sync Plans -> New Sync Plan.
2. Open page source, check the attributes of labels present on the page ('Name', 'Description', 'Interval' etc.)
Actual results:
'for' attribute is empty:
<label class="control-label col-sm-2 ng-binding" for="">Name</label>
<label class="control-label col-sm-2 ng-binding" for="">Description</label>
Expected results:
<label class="control-label col-sm-2 ng-binding" for="name">Name</label>
<label class="control-label col-sm-2 ng-binding" for="description">Description</label>
Additional info: