Skip to content

Commit

Permalink
Merge branch 'development' of https://github.com/flask-dashboard/Flas…
Browse files Browse the repository at this point in the history
…k-Monitoring-Dashboard into development
  • Loading branch information
FlyingBird95 committed Mar 30, 2018
2 parents 84708b5 + 17c0913 commit 33b6161
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ Please note that the changes before version 1.10.0 have not been documented.

Unreleased
----------


v1.11.0
-------
Changed

- Added new graph: Version usage
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@
</thead>
<tbody>
{% for record in times %}
<tr>
<tr style="cursor: pointer"
onclick="window.location='{{ url_for('dashboard.result_heatmap', end=record.endpoint) }}';">
<td style="background-color: {{ colors[record.endpoint] }}"></td>
<td style="max-width: 200px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;">{{ record.endpoint }}</td>
<td style="text-align: right;">
Expand Down Expand Up @@ -90,11 +91,8 @@
{% endif %}
{% endfor %}

<td>
<a href="{{ url_for('dashboard.result_heatmap', end=record.endpoint) }}"
class="btn btn-default btn-sm right-align-custom">
Details
</a>
<td><a href="{{ url_for('dashboard.result_heatmap', end=record.endpoint) }}"
class="btn btn-default btn-sm right-align-custom">Details</a>
</td>
</tr>
{% endfor %}
Expand Down

0 comments on commit 33b6161

Please sign in to comment.