Skip to content

Commit

Permalink
adding text to indicate that columns are sortable (#1795)
Browse files Browse the repository at this point in the history
As mentioned in issue #1778, having a tooltip on the table would let the user know that it can be sorted when the header is clicked. This pull request will add the tooltip on scheduling page and history page which are being mostly used.

Sample screenshot:
image

This is a duplicate PR (#1780) but from a different branch, I moved these changes from master->sort-text in my repo.
  • Loading branch information
fwantastic authored and burgerkingeater committed Jun 21, 2018
1 parent e9dfd50 commit fb2e72e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@

<div class="row" id="currently-running-view">
<div class="col-xs-12">
<i>* Click column headers to sort.</i>
<table id="executingJobs"
class="table table-striped table-bordered table-hover table-condensed executions-table">
<thead>
Expand Down Expand Up @@ -132,6 +133,7 @@

<div class="row" id="recently-finished-view">
<div class="col-xs-12">
<i>* Click column headers to sort.</i>
<table id="recentlyFinished"
class="table table-striped table-bordered table-hover table-condensed executions-table">
<thead>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@

<div class="row">
<div class="col-xs-12">
<i>* Click column headers to sort.</i>
<table id="executingJobs"
class="table table-striped table-bordered table-hover table-condensed executions-table">
<thead>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@

<div class="row">
<div class="col-xs-12">
<i>* Click column headers to sort.</i>
<table id="scheduledFlowsTbl"
class="table table-striped table-condensed table-bordered table-hover">
<thead>
Expand Down

0 comments on commit fb2e72e

Please sign in to comment.