From 3b36dd2c81a72ca07bf933bf622fa5adaa5b2c48 Mon Sep 17 00:00:00 2001 From: Rhys Barrie Date: Fri, 29 Oct 2021 13:36:40 -0400 Subject: [PATCH] netbox-community/netbox#6930:revert default columns on ObjectChangeTable, not configurable --- netbox/extras/tables.py | 1 - 1 file changed, 1 deletion(-) diff --git a/netbox/extras/tables.py b/netbox/extras/tables.py index 31b943c27..63b3748c8 100644 --- a/netbox/extras/tables.py +++ b/netbox/extras/tables.py @@ -215,7 +215,6 @@ class ObjectChangeTable(BaseTable): class Meta(BaseTable.Meta): model = ObjectChange fields = ('id', 'time', 'user_name', 'action', 'changed_object_type', 'object_repr', 'request_id') - default_columns = ('time', 'user_name', 'action', 'changed_object_type', 'object_repr', 'request_id') class ObjectJournalTable(BaseTable):