Rename ActionsColumn sequence to actions

This commit is contained in:
jeremystretch
2022-03-14 13:45:21 -04:00
parent 245cff887c
commit 6170138124
8 changed files with 22 additions and 21 deletions

View File

@@ -57,7 +57,7 @@ class FHRPGroupAssignmentTable(NetBoxTable):
linkify=True
)
actions = columns.ActionsColumn(
sequence=('edit', 'delete')
actions=('edit', 'delete')
)
class Meta(NetBoxTable.Meta):

View File

@@ -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):