Skip to content

Commit 887dee2

Browse files
Kunal Khatuasohami
authored andcommitted
DRILL-7201: Strange symbols in error window (Windows)
Looks like some unicode characters creeped in, causing the rendering to be messed up ONLY for Windows OS. This PR patches that issue and ensures that the Alert symbol also appears correctly.
1 parent fdb36ad commit 887dee2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exec/java-exec/src/main/resources/rest/alertModals.ftl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
<!-- Modal content-->
3434
<div class="modal-content">
3535
<div class="modal-header modalHeaderAlert">
36-
<button type="button" class="close closeX" data-dismiss="modal" style="color:red;font-size:200%">×</button>
37-
<h4 class="modal-title"><span class="glyphicon glyphicon-alert" style="font-size:125%"></span><span id="modalHeader" style="font-family:Helvetica Neue,Helvetica,Arial,sans-serif;white-space:pre">~ErrorMessage~ Title</span></h4>
36+
<button type="button" class="close closeX" data-dismiss="modal"><span class="glyphicon glyphicon-remove" style="color:red;font-size:125%"></span></button>
37+
<h4 class="modal-title"><span class="glyphicon glyphicon-alert" style="font-size:125%">&#xe209;</span><span id="modalHeader" style="font-family:Helvetica Neue,Helvetica,Arial,sans-serif;white-space:pre">~ErrorMessage~ Title</span></h4>
3838
</div>
3939
<div class="modal-body" id="modalBody" style="line-height:3">
4040
~ErrorMessage Details~

0 commit comments

Comments
 (0)