This is an automated email from the ASF dual-hosted git repository.

sorabh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/drill.git


The following commit(s) were added to refs/heads/master by this push:
     new 887dee2  DRILL-7201: Strange symbols in error window (Windows)
887dee2 is described below

commit 887dee236e822fe46614c38ab8eca7acac709062
Author: Kunal Khatua <[email protected]>
AuthorDate: Thu Apr 25 13:53:51 2019 -0700

    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.
---
 exec/java-exec/src/main/resources/rest/alertModals.ftl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/exec/java-exec/src/main/resources/rest/alertModals.ftl 
b/exec/java-exec/src/main/resources/rest/alertModals.ftl
index 202c052..320d96d 100644
--- a/exec/java-exec/src/main/resources/rest/alertModals.ftl
+++ b/exec/java-exec/src/main/resources/rest/alertModals.ftl
@@ -33,8 +33,8 @@
       <!-- Modal content-->
       <div class="modal-content">
         <div class="modal-header modalHeaderAlert">
-          <button type="button" class="close closeX" data-dismiss="modal" 
style="color:red;font-size:200%">×</button>
-          <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>
+          <button type="button" class="close closeX" 
data-dismiss="modal"><span class="glyphicon glyphicon-remove" 
style="color:red;font-size:125%"></span></button>
+          <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>
         </div>
         <div class="modal-body" id="modalBody" style="line-height:3">
         ~ErrorMessage Details~

Reply via email to