Ensure 'id' column is present by default
This commit is contained in:
parent
5a92975eab
commit
a94fe018ac
|
|
@ -294,7 +294,7 @@ class VLANTranslationRuleTable(NetBoxTable):
|
|||
fields = (
|
||||
'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):
|
||||
|
|
|
|||
Loading…
Reference in New Issue