From 66291133a0450615d9a61790b0b9defcda507dd3 Mon Sep 17 00:00:00 2001 From: Peter Schultz Date: Mon, 15 Apr 2019 14:31:45 +0200 Subject: [PATCH 1/2] ui: Remove duplicate destination column Fixes #628. Signed-off-by: Peter Schultz --- admin/ui/route.go | 1 - 1 file changed, 1 deletion(-) diff --git a/admin/ui/route.go b/admin/ui/route.go index 18ac6376d..2657ec07d 100644 --- a/admin/ui/route.go +++ b/admin/ui/route.go @@ -95,7 +95,6 @@ $(function(){ $tr.append($('').text(i+1)); $tr.append($('').text(r.service)); $tr.append($('').text(r.src)); - $tr.append($('').text(r.dst)); $tr.append($('').append($('').attr('href', r.dst).text(r.dst))); $tr.append($('').text(r.opts)); $tr.append($('').text((r.weight * 100).toFixed(2) + '%')); From 3d328d48ea6d170930ea34abd9f0aa72b7344195 Mon Sep 17 00:00:00 2001 From: Peter Schultz Date: Mon, 15 Apr 2019 14:35:28 +0200 Subject: [PATCH 2/2] Correct changelog --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a4872a02..68bef50b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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