mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-24 17:38:37 -06:00
Ensure 'id' column is present by default
This commit is contained in:
parent
5a92975eab
commit
a94fe018ac
@ -294,7 +294,7 @@ class VLANTranslationRuleTable(NetBoxTable):
|
|||||||
fields = (
|
fields = (
|
||||||
'pk', 'id', 'name', 'policy', 'local_vid', 'remote_vid', 'tags', 'created', 'last_updated',
|
'pk', 'id', 'name', 'policy', 'local_vid', 'remote_vid', 'tags', 'created', 'last_updated',
|
||||||
)
|
)
|
||||||
default_columns = ('pk', 'local_vid', 'remote_vid', 'policy')
|
default_columns = ('pk', 'id', 'local_vid', 'remote_vid', 'policy')
|
||||||
|
|
||||||
|
|
||||||
class InterfaceVLANTranslationTable(NetBoxTable):
|
class InterfaceVLANTranslationTable(NetBoxTable):
|
||||||
|
Loading…
Reference in New Issue
Block a user