Skip to content

Commit

Permalink
Merge pull request #641 from fabiolb/628-route-table-header
Browse files Browse the repository at this point in the history
ui: Remove duplicate destination column
  • Loading branch information
pschultz committed Jun 3, 2019
2 parents 6c1cfa9 + 3d328d4 commit 21ef16d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@

Thanks to [@stack72](https://github.com/stack72) for the patch.

* [PR #583](https://github.com/fabiolb/fabio/pull/583): Make dest column clickable
* [PR #583](https://github.com/fabiolb/fabio/pull/583): Update PROXY protocol docs

This patch updates the documentation around the PROXY protocol.

Thanks to [@pschultz](https://github.com/pschultz).
Thanks to [@leprechau](https://github.com/leprechau).

* [PR #587](https://github.com/fabiolb/fabio/pull/587): Make dest column clickable

Expand Down
1 change: 0 additions & 1 deletion admin/ui/route.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ $(function(){
$tr.append($('<td />').text(i+1));
$tr.append($('<td />').text(r.service));
$tr.append($('<td />').text(r.src));
$tr.append($('<td />').text(r.dst));
$tr.append($('<td />').append($('<a />').attr('href', r.dst).text(r.dst)));
$tr.append($('<td />').text(r.opts));
$tr.append($('<td />').text((r.weight * 100).toFixed(2) + '%'));
Expand Down

0 comments on commit 21ef16d

Please sign in to comment.