Hide Forgot
Description of problem: - The text is broken in the middle of words - Extra <td /> to the right of the notice The style.css has a td entry with word-break:break-all, which is not appropriate for blocks of text. It appears in code that a <td/> was used instead of a </td>, so another table cell is created. Version-Release number of selected component (if applicable): dev Steps to Reproduce: 1. Click Create, fill in data, click Continue 2. Find the Hardware Sample section Actual results: There's an extra <td/> to the right of the notice, and the text is broken in the middle of words Expected results: Properly formatted text Additional info: Use something like .txt--nobreak{word-break:normal;word-wrap:break-word} and <td class=".txt--nobreak">Red Hat requires a representative sample...</td>