From 7bceeb714b53d4b241356c9ed1bc0e4460bc97c5 Mon Sep 17 00:00:00 2001 From: jeremystretch Date: Tue, 10 Aug 2021 20:35:39 -0400 Subject: [PATCH] Fixes #6935: Remove extraneous columns from inventory item and device bay tables --- docs/release-notes/version-2.11.md | 1 + netbox/dcim/tables/devices.py | 4 ---- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/docs/release-notes/version-2.11.md b/docs/release-notes/version-2.11.md index 580d8eb19..4ca765264 100644 --- a/docs/release-notes/version-2.11.md +++ b/docs/release-notes/version-2.11.md @@ -14,6 +14,7 @@ * [#6908](https://github.com/netbox-community/netbox/issues/6908) - Allow assignment of scope to VLAN groups upon import * [#6909](https://github.com/netbox-community/netbox/issues/6909) - Remove extraneous `site` column from VLAN group import form * [#6910](https://github.com/netbox-community/netbox/issues/6910) - Fix exception on invalid CSV import column name +* [#6935](https://github.com/netbox-community/netbox/issues/6935) - Remove extraneous columns from inventory item and device bay tables * [#6936](https://github.com/netbox-community/netbox/issues/6936) - Add missing `parent` column to inventory item import form --- diff --git a/netbox/dcim/tables/devices.py b/netbox/dcim/tables/devices.py index 258e712d5..b5d1b64ed 100644 --- a/netbox/dcim/tables/devices.py +++ b/netbox/dcim/tables/devices.py @@ -232,10 +232,6 @@ class DeviceComponentTable(BaseTable): linkify=True, order_by=('_name',) ) - cable = tables.Column( - linkify=True - ) - mark_connected = BooleanColumn() class Meta(BaseTable.Meta): order_by = ('device', 'name')