You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2020/12/19 20:37:59 UTC

[hbase] branch master updated: HBASE-25404 Procedures table Id under master web UI gets word break to single character (#2783)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 7b1e9cd  HBASE-25404 Procedures table Id under master web UI gets word break to single character (#2783)
7b1e9cd is described below

commit 7b1e9cd0d2bb6bde4f813d5d53ff2b13b06847ff
Author: Akshay Sudheer <74...@users.noreply.github.com>
AuthorDate: Sun Dec 20 02:07:21 2020 +0530

    HBASE-25404 Procedures table Id under master web UI gets word break to single character (#2783)
    
    Signed-off-by: Duo Zhang <zh...@apache.org>
---
 hbase-server/src/main/resources/hbase-webapps/master/procedures.jsp | 2 +-
 hbase-server/src/main/resources/hbase-webapps/static/css/hbase.css  | 5 +++++
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/hbase-server/src/main/resources/hbase-webapps/master/procedures.jsp b/hbase-server/src/main/resources/hbase-webapps/master/procedures.jsp
index 8e1e238..fba9a42 100644
--- a/hbase-server/src/main/resources/hbase-webapps/master/procedures.jsp
+++ b/hbase-server/src/main/resources/hbase-webapps/master/procedures.jsp
@@ -123,7 +123,7 @@
       </div>
   </div>
   <p>We do not list procedures that have completed successfully; their number makes it hard to spot the problematics.</p>
-  <table class="table table-striped" width="90%" >
+  <table class="table table-striped" id="tab_Procedures" width="90%" >
     <tr>
         <th>Id</th>
         <th>Parent</th>
diff --git a/hbase-server/src/main/resources/hbase-webapps/static/css/hbase.css b/hbase-server/src/main/resources/hbase-webapps/static/css/hbase.css
index d1cc0fe..2661c8d 100644
--- a/hbase-server/src/main/resources/hbase-webapps/static/css/hbase.css
+++ b/hbase-server/src/main/resources/hbase-webapps/static/css/hbase.css
@@ -39,6 +39,11 @@ section { margin-bottom: 3em; }
     margin-top: 1.2em;
 }
 
+table#tab_Procedures td:nth-child(-n+7) {
+    word-break: normal;
+    overflow-wrap: normal;
+}
+
 /* Region Server page styling */
 
 /* striped tables styling */