Actions
Feature #24624
closedHost Assign Taxonomies radio button must be normalized
Description
now the html source of the input radio block looks like
<form ...> <div class="clearfix"> ... </div> <input type="radio" value="yes" name="location[optimistic_import]" id="location_optimistic_import_yes"> Fix Location on Mismatch <input type="radio" value="no" checked="checked" name="location[optimistic_import]" id="location_optimistic_import_no"> Fail on Mismatch </form>
But must look like:
<form ...> <div class="clearfix"> ... </div> <label class="radio-inline"> <input type="radio" value="yes" name="location[optimistic_import]" id="location_optimistic_import_yes"> Fix Location on Mismatch </label> <label class="radio-inline"> <input type="radio" value="no" checked="checked" name="location[optimistic_import]" id="location_optimistic_import_no"> Fail on Mismatch </label> </form>
Files
Updated by Djebran Lezzoum over 6 years ago
This is needed for automation to handle that radio buttons text without javascript usage.
Updated by The Foreman Bot over 6 years ago
- Status changed from New to Ready For Testing
- Pull request https://github.com/theforeman/foreman/pull/5953 added
Updated by Marek Hulán over 6 years ago
- Target version set to 1.20.0
- Fixed in Releases 1.20.0 added
Updated by Djebran Lezzoum over 6 years ago
- Status changed from Ready For Testing to Closed
Applied in changeset 4dfba1a1645c22df405fdc648b16348080424bba.
Actions