File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 516516 const container = document . createElement ( 'div' ) ;
517517 container . classList . add ( 'alert' , 'alert-danger' , 'mx-2' ) ;
518518 container . innerHTML =
519- 'Warning!! This problem uses the following deprecated macros:' +
519+ '<p> Warning!! This problem uses the following deprecated macros:</p> ' +
520520 '<ul class="mb-0">' +
521521 data . deprecated_macros . reduce ( ( acc , item ) => `${ acc } <li>${ item } </li>` , '' ) +
522- '</ul>If this is an OPL problem, please report this issue to the OPL. ' +
523- 'If this is a custom problem, please update the problem to use modern macros.' ;
522+ '</ul><p> If this is an OPL problem, please report this issue to the OPL. ' +
523+ 'If this is a custom problem, please update the problem to use modern macros.</p> ' ;
524524 iframe . after ( container ) ;
525525 }
526526
Original file line number Diff line number Diff line change 8181 const container = document . createElement ( 'div' ) ;
8282 container . classList . add ( 'alert' , 'alert-danger' ) ;
8383 container . innerHTML =
84- 'Warning!! This problem uses the following deprecated macros:' +
84+ '<p> Warning!! This problem uses the following deprecated macros:</p> ' +
8585 '<ul class="mb-0">' +
8686 data . deprecated_macros . reduce ( ( acc , item ) => `${ acc } <li>${ item } </li>` , '' ) +
87- '</ul>If this is an OPL problem, please report this issue to the OPL. ' +
88- 'If this is a custom problem, please update the problem to use modern macros.' ;
87+ '</ul><p> If this is an OPL problem, please report this issue to the OPL. ' +
88+ 'If this is a custom problem, please update the problem to use modern macros.</p> ' ;
8989 iframe . after ( container ) ;
9090 }
9191 iFrameResize (
You can’t perform that action at this time.
0 commit comments