Project

General

Profile

Actions

Feature #24624

closed

Host Assign Taxonomies radio button must be normalized

Added by Djebran Lezzoum over 5 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Normal
Category:
Tests
Target version:
Difficulty:
Triaged:
No
Fixed in Releases:
Found in Releases:

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

Actions #1

Updated by Djebran Lezzoum over 5 years ago

This is needed for automation to handle that radio buttons text without javascript usage.

Actions #2

Updated by The Foreman Bot over 5 years ago

  • Status changed from New to Ready For Testing
  • Pull request https://github.com/theforeman/foreman/pull/5953 added
Actions #3

Updated by Marek Hulán over 5 years ago

  • Target version set to 1.20.0
  • Fixed in Releases 1.20.0 added
Actions #4

Updated by Djebran Lezzoum over 5 years ago

  • Status changed from Ready For Testing to Closed
Actions #5

Updated by Tomer Brisker over 5 years ago

  • Category set to Tests
Actions

Also available in: Atom PDF