luci-app-dockerman: fix(networks): Use relative path for network detail links

Signed-off-by: sbwml <admin@cooluc.com>
This commit is contained in:
sbwml
2026-02-22 04:22:19 +08:00
parent 24edcc374f
commit ff6723c59a
@@ -208,7 +208,7 @@ return dm2.dv.extend({
const n = net.Name;
const _shortId = (net.Id || '').substring(0, 12);
const shortLink = E('a', {
'href': `${view.dockerman_url}/network/${net.Id}`,
'href': `network/${net.Id}`,
'style': 'font-family: monospace;',
'title': _('Click to view this network'),
}, [_shortId]);