Skip to content

Commit

Permalink
Merge pull request #587 from kneufeld/master
Browse files Browse the repository at this point in the history
make Dest column into clickable links
  • Loading branch information
magiconair committed Feb 25, 2019
2 parents 18e5fca + 2f9acc4 commit 2bf608b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions admin/ui/route.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ $(function(){
$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 2bf608b

Please sign in to comment.