Skip to content
This repository was archived by the owner on May 9, 2024. It is now read-only.

Commit e838a25

Browse files
zuxqojrxin
authored andcommitted
[SPARK-7782] fixed sort arrow issue
Current behaviour:: In spark UI ![screen shot 2015-05-27 at 3 27 51 pm](https://cloud.githubusercontent.com/assets/3919211/7837541/47d330ba-04a5-11e5-89d1-e5b11da1a513.png) In YARN ![screen shot 2015-05-27 at 3](https://cloud.githubusercontent.com/assets/3919211/7837594/aebd1d36-04a5-11e5-8216-86e03c07d2bd.png) In jira ![screen shot 2015-05-27 at 3_2](https://cloud.githubusercontent.com/assets/3919211/7837616/d3fedce2-04a5-11e5-9e68-960ed54e5d83.png) Author: zuxqoj <[email protected]> Closes apache#6437 from zuxqoj/SPARK-7782_PR and squashes the following commits: cd068b9 [zuxqoj] [SPARK-7782] fixed sort arrow issue
1 parent 3541061 commit e838a25

File tree

1 file changed

+3
-3
lines changed
  • core/src/main/resources/org/apache/spark/ui/static

1 file changed

+3
-3
lines changed

core/src/main/resources/org/apache/spark/ui/static/sorttable.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ sorttable = {
100100
this.removeChild(document.getElementById('sorttable_sortfwdind'));
101101
sortrevind = document.createElement('span');
102102
sortrevind.id = "sorttable_sortrevind";
103-
sortrevind.innerHTML = stIsIE ? '&nbsp<font face="webdings">5</font>' : '&nbsp;&#x25B4;';
103+
sortrevind.innerHTML = stIsIE ? '&nbsp<font face="webdings">5</font>' : '&nbsp;&#x25BE;';
104104
this.appendChild(sortrevind);
105105
return;
106106
}
@@ -113,7 +113,7 @@ sorttable = {
113113
this.removeChild(document.getElementById('sorttable_sortrevind'));
114114
sortfwdind = document.createElement('span');
115115
sortfwdind.id = "sorttable_sortfwdind";
116-
sortfwdind.innerHTML = stIsIE ? '&nbsp<font face="webdings">6</font>' : '&nbsp;&#x25BE;';
116+
sortfwdind.innerHTML = stIsIE ? '&nbsp<font face="webdings">6</font>' : '&nbsp;&#x25B4;';
117117
this.appendChild(sortfwdind);
118118
return;
119119
}
@@ -134,7 +134,7 @@ sorttable = {
134134
this.className += ' sorttable_sorted';
135135
sortfwdind = document.createElement('span');
136136
sortfwdind.id = "sorttable_sortfwdind";
137-
sortfwdind.innerHTML = stIsIE ? '&nbsp<font face="webdings">6</font>' : '&nbsp;&#x25BE;';
137+
sortfwdind.innerHTML = stIsIE ? '&nbsp<font face="webdings">6</font>' : '&nbsp;&#x25B4;';
138138
this.appendChild(sortfwdind);
139139

140140
// build an array to sort. This is a Schwartzian transform thing,

0 commit comments

Comments
 (0)