Fixes #14749: Remove errant translation wrapper from DeviceBay installed_device

This commit is contained in:
Jeremy Stretch 2024-01-09 08:36:45 -05:00
parent edc2e3809d
commit 2221a9d71f

View File

@ -1115,7 +1115,7 @@ class DeviceBay(ComponentModel, TrackingModelMixin):
installed_device = models.OneToOneField(
to='dcim.Device',
on_delete=models.SET_NULL,
related_name=_('parent_bay'),
related_name='parent_bay',
blank=True,
null=True
)