Skip to content

Commit

Permalink
Add ability to sort performers by updated_at (#866)
Browse files Browse the repository at this point in the history
  • Loading branch information
ikmckenz authored Dec 19, 2024
1 parent b777d16 commit 1ebd890
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions frontend/src/pages/performers/Performers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ const sortOptions = [
{ value: PerformerSortEnum.DEBUT, label: "Scene Debut" },
{ value: PerformerSortEnum.LAST_SCENE, label: "Latest Scene" },
{ value: PerformerSortEnum.CREATED_AT, label: "Created At" },
{ value: PerformerSortEnum.UPDATED_AT, label: "Updated At" },
];

const PerformersComponent: FC = () => {
Expand Down

0 comments on commit 1ebd890

Please sign in to comment.