Hide Forgot
Created attachment 1198570 [details] SSUI service order form Description of problem: The long descriptions for catalog items accept raw HTML, which allows for more presentable service descriptions. Version-Release number of selected component (if applicable): Self-Service UI How reproducible: 100% Steps to Reproduce: 1. Create a service 2. Include HTML in the long description 3. Actual results: while the html parses correctly in the main UI, in the SSUI there are missing elements (tables/colors for example) and spacing seems affected. Expected results: the description should look the same and be consistent across the UI and SSUI Additional info: I've attached three screen shots, one of the main UI, one of the info message on the main SSUI order page, and one of the actual order page of the service. The HTML used in the catalog follows: <!DOCTYPE html> <html> <head> <style> table, th, td { border: 2px solid black; border-collapse: collapse; background-color: #f1f1c1; } th, td { padding: 8px; } </style> </head> <body> <h2>Multi-Tiered Service Description</h2> <table style="width:100%"> <tr> <th>Component Name</th> <th>Component Function</th> <th>Description</th> </tr> <tr> <td>VM 1</td> <td>Apache Web Server</td> <td>Front End LB</td> </tr> <tr> <td>VM 2</td> <td>JBoss</td> <td>Application Server</td> </tr> <tr> <td>VM 3</td> <td>MariaDB</td> <td>Database</td> </tr> </table> </body> </html>
Created attachment 1198572 [details] Long description in main UI
Created attachment 1198574 [details] SSUI (hoover over "more" on the catalogs page)