Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[SPARK-32924] Make duration column in master UI sorted in the correct…
… order
  • Loading branch information
Baohe Zhang committed Mar 4, 2021
commit 55a360d31af21da85b380e2f05380a57b881bb7d
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,9 @@ private[ui] class MasterPage(parent: MasterWebUI) extends WebUIPage("") {
<td>{UIUtils.formatDate(app.submitDate)}</td>
<td>{app.desc.user}</td>
<td>{app.state.toString}</td>
<td>{UIUtils.formatDuration(app.duration)}</td>
<td sorttable_customkey={app.duration.toString}>
{UIUtils.formatDuration(app.duration)}
</td>
</tr>
}

Expand Down