Skip to content

Commit

Permalink
feat: reverse phase tasks order
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikssonJoakim committed Jan 5, 2023
1 parent 760b317 commit 1ac79c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/tasks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ const Tasks: NextPage<TasksProps> = props => {
<Header />
<div className="okp4-nemeton-web-page-content-container" id="tasks">
<h1>Tasks</h1>
{Phases(tasksUrls).map(
{[...Phases(tasksUrls)].reverse().map(
({ phaseName, tasks, status }: PhaseDTO, index) =>
status !== 'coming' && (
<div key={index}>
Expand Down

0 comments on commit 1ac79c0

Please sign in to comment.