Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bortoz committed Dec 28, 2024
1 parent 43a6e28 commit 2c53cc5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default async function Page({ params: { editionId, roundId, taskName } }:
<Link href={`/edition/${task.ed_id}`}>{task.edition}</Link>
</li>
<li>
<Link href={`/edition/${task.ed_id}`}>{task.round}</Link>
<Link href={`/edition/${task.ed_id}/round/${task.r_id}`}>{task.round}</Link>
</li>
<li>{task.title}</li>
</ul>
Expand All @@ -86,7 +86,7 @@ export default async function Page({ params: { editionId, roundId, taskName } }:
<p>{task.statement}</p>
<CardActions>
<a
href={`https://training.olinfo.it/#/task/ois_${task.name}`}
href={`https://training.olinfo.it/task/ois_${task.name}`}
target="_blank"
className="btn btn-primary"
rel="noreferrer">
Expand Down

0 comments on commit 2c53cc5

Please sign in to comment.