diff options
-rw-r--r-- | modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js index 42c6b53d9..243a9bccf 100644 --- a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js +++ b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js @@ -152,7 +152,8 @@ return view.extend({ dest, (v6 ? flags.from : flags.via) || '-', String(flags.metric || 0), - flags.table || 'main' + flags.table || 'main', + flags.proto, ]); } @@ -180,7 +181,8 @@ return view.extend({ E('div', { 'class': 'th' }, [ _('Target') ]), E('div', { 'class': 'th' }, [ _('IPv4-Gateway') ]), E('div', { 'class': 'th' }, [ _('Metric') ]), - E('div', { 'class': 'th' }, [ _('Table') ]) + E('div', { 'class': 'th' }, [ _('Table') ]), + E('div', { 'class': 'th' }, [ _('Protocol') ]), ]) ]); @@ -198,7 +200,8 @@ return view.extend({ E('div', { 'class': 'th' }, [ _('Target') ]), E('div', { 'class': 'th' }, [ _('Source') ]), E('div', { 'class': 'th' }, [ _('Metric') ]), - E('div', { 'class': 'th' }, [ _('Table') ]) + E('div', { 'class': 'th' }, [ _('Table') ]), + E('div', { 'class': 'th' }, [ _('Protocol') ]), ]) ]); |