mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-24 09:28:38 -06:00
Fixes #454: Correct typecasting on rack export
This commit is contained in:
parent
74528c6036
commit
098ff961e3
@ -373,7 +373,7 @@ class Rack(CreatedUpdatedModel):
|
|||||||
self.tenant.name if self.tenant else '',
|
self.tenant.name if self.tenant else '',
|
||||||
self.role.name if self.role else '',
|
self.role.name if self.role else '',
|
||||||
self.get_type_display() if self.type else '',
|
self.get_type_display() if self.type else '',
|
||||||
self.width,
|
str(self.width),
|
||||||
str(self.u_height),
|
str(self.u_height),
|
||||||
])
|
])
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user