mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-14 09:51:22 -06:00
Fixes #7739: Fix exception when tracing cable across circuit with no far end termination
This commit is contained in:
parent
e5900a3fe3
commit
f32e694499
@ -12,7 +12,8 @@
|
|||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
||||||
* [#7729](https://github.com/netbox-community/netbox/issues/7229) - Fix permissions evaluation when displaying VLAN group VLANs table
|
* [#7729](https://github.com/netbox-community/netbox/issues/7729) - Fix permissions evaluation when displaying VLAN group VLANs table
|
||||||
|
* [#7739](https://github.com/netbox-community/netbox/issues/7739) - Fix exception when tracing cable across circuit with no far end termination
|
||||||
* [#7813](https://github.com/netbox-community/netbox/issues/7813) - Fix handling of errors during export template rendering
|
* [#7813](https://github.com/netbox-community/netbox/issues/7813) - Fix handling of errors during export template rendering
|
||||||
|
|
||||||
---
|
---
|
||||||
|
@ -442,6 +442,7 @@ class CableTraceSVG:
|
|||||||
parent_objects.append(parent_object)
|
parent_objects.append(parent_object)
|
||||||
|
|
||||||
# Near end termination
|
# Near end termination
|
||||||
|
if near_end is not None:
|
||||||
termination = self._draw_box(
|
termination = self._draw_box(
|
||||||
width=self.width * .8,
|
width=self.width * .8,
|
||||||
color=self._get_color(near_end),
|
color=self._get_color(near_end),
|
||||||
|
Loading…
Reference in New Issue
Block a user