mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-23 21:57:47 -06:00
Rename ActionsColumn sequence to actions
This commit is contained in:
@@ -57,7 +57,7 @@ class FHRPGroupAssignmentTable(NetBoxTable):
|
||||
linkify=True
|
||||
)
|
||||
actions = columns.ActionsColumn(
|
||||
sequence=('edit', 'delete')
|
||||
actions=('edit', 'delete')
|
||||
)
|
||||
|
||||
class Meta(NetBoxTable.Meta):
|
||||
|
||||
@@ -151,7 +151,7 @@ class VLANDevicesTable(VLANMembersTable):
|
||||
linkify=True
|
||||
)
|
||||
actions = columns.ActionsColumn(
|
||||
sequence=('edit',)
|
||||
actions=('edit',)
|
||||
)
|
||||
|
||||
class Meta(NetBoxTable.Meta):
|
||||
@@ -165,7 +165,7 @@ class VLANVirtualMachinesTable(VLANMembersTable):
|
||||
linkify=True
|
||||
)
|
||||
actions = columns.ActionsColumn(
|
||||
sequence=('edit',)
|
||||
actions=('edit',)
|
||||
)
|
||||
|
||||
class Meta(NetBoxTable.Meta):
|
||||
|
||||
Reference in New Issue
Block a user