Skip to content

Commit

Permalink
fix(apis_entities): move duplicate button after other action buttons
Browse files Browse the repository at this point in the history
Closes: #694
  • Loading branch information
b1rger committed Mar 4, 2024
1 parent 4b890c4 commit a32685b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apis_core/apis_entities/tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class AbstractEntityTable(GenericTable):
noduplicate = DuplicateColumn()

class Meta(GenericTable.Meta):
sequence = ("...", "view", "edit", "noduplicate", "delete")
sequence = ("...", "view", "edit", "delete", "noduplicate")

def before_render(self, request):
super().before_render(request)
Expand Down

0 comments on commit a32685b

Please sign in to comment.