From cdfec4d86595c15efe2a8180d89ef49f2704c6bf Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Mon, 3 Aug 2020 12:57:04 -0400 Subject: [PATCH] Fixes #4939: Fix linking to LAG interfaces on other VC members --- docs/release-notes/version-2.9.md | 1 + netbox/templates/dcim/inc/interface.html | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/release-notes/version-2.9.md b/docs/release-notes/version-2.9.md index 29313a98f..745b14c6b 100644 --- a/docs/release-notes/version-2.9.md +++ b/docs/release-notes/version-2.9.md @@ -15,6 +15,7 @@ * [#4930](https://github.com/netbox-community/netbox/issues/4930) - Replicate label values when instantiating device type components * [#4931](https://github.com/netbox-community/netbox/issues/4931) - Fix DoesNotExist exception when deleting devices * [#4938](https://github.com/netbox-community/netbox/issues/4938) - Show add, import buttons on virtual chassis list view +* [#4939](https://github.com/netbox-community/netbox/issues/4939) - Fix linking to LAG interfaces on other VC members --- diff --git a/netbox/templates/dcim/inc/interface.html b/netbox/templates/dcim/inc/interface.html index 75869db52..3d7dd4c3d 100644 --- a/netbox/templates/dcim/inc/interface.html +++ b/netbox/templates/dcim/inc/interface.html @@ -22,7 +22,7 @@ {# LAG #} {% if iface.lag %} - {{ iface.lag }} + {{ iface.lag }} {% endif %}