Skip to content

Commit cd6f224

Browse files
authored
HBASE-29037 Backport missing UI patches to branch-2 (#6551)
* HBASE-24624 Optimize table.jsp code (#1963) Signed-off-by: Guangxu Cheng <gxcheng@apache.org> (cherry picked from commit 9ad16aa) * HBASE-25402 Sorting order by start key or end key is not considering empty start key/end key (#2955) Signed-off-by: Duo Zhang <zhangduo@apache.org> Signed-off-by: Pankaj Kumar<pankajkumar@apache.org> (cherry picked from commit 157200e) * HBASE-28778 NPE may occur when opening master-status or table.jsp or procedure.jsp while Master is initializing (#6152) Signed-off-by: Duo Zhang <zhangduo@apache.org> (cherry picked from commit 3caaf2d) * HBASE-20452 Master UI: Table merge button should validate required fields before submit Signed-off-by: tedyu <yuzhihong@gmail.com> (cherry picked from commit 6ce1136) --------- Co-authored-by: xincunSong <365724453@qq.com> Co-authored-by: Akshay Sudheer <74921542+AkshayTSudheer@users.noreply.github.com> Co-authored-by: Peng Lu <lupeng_nwpu@qq.com> Co-authored-by: Nihal Jain <nihaljain.cs@gmail.com> Signed-off-by: Duo Zhang <zhangduo@apache.org> Signed-off-by: Nihal Jain <nihaljain.cs@gmail.com>
1 parent b8303e9 commit cd6f224

File tree

2 files changed

+886
-930
lines changed

2 files changed

+886
-930
lines changed

hbase-server/src/main/jamon/org/apache/hadoop/hbase/tmpl/regionserver/RSStatusTmpl.jamon

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,12 @@ $(document).ready(function()
299299
type: "numeric"
300300
});
301301

302-
$("#baseStatsTable").tablesorter();
302+
$("#baseStatsTable").tablesorter({
303+
headers: {
304+
1: {empty: 'emptyMin'},
305+
2: {empty: 'emptyMax'}
306+
}
307+
});
303308
$("#requestStatsTable").tablesorter({
304309
headers: {
305310
1: {sorter: 'separator'},

0 commit comments

Comments
 (0)