We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 383285f commit 4286c1cCopy full SHA for 4286c1c
docs/release-notes/version-3.6.md
@@ -4,6 +4,7 @@
4
5
### Enhancements
6
7
+* [#12831](https://github.com/netbox-community/netbox/issues/12831) - Include circuit description in cable trace SVG image
8
* [#13950](https://github.com/netbox-community/netbox/issues/13950) - Display custom choice field labels rather than values in UI
9
10
### Bug Fixes
netbox/dcim/svg/cables.py
@@ -160,6 +160,8 @@ def _get_labels(cls, instance):
160
elif instance._meta.model_name == 'circuit':
161
labels[0] = f'Circuit {instance}'
162
labels.append(instance.provider)
163
+ if instance.description:
164
+ labels.append(instance.description)
165
elif instance._meta.model_name == 'circuittermination':
166
if instance.xconnect_id:
167
labels.append(f'{instance.xconnect_id}')
0 commit comments