Skip to content

Commit

Permalink
ui: have /errors/mirror link back to /edit/mirror
Browse files Browse the repository at this point in the history
  • Loading branch information
serprex committed Jan 24, 2024
1 parent 23a97b1 commit 7888c27
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ui/app/mirrors/errors/[mirrorName]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,9 @@ export default function MirrorError() {
<Label variant='body'>
<b>Mirror name</b>:
</Label>
<Label variant='body'>{params.mirrorName}</Label>
<Label variant='body'>
<a href={`/mirrors/edit/${params.mirrorName}`}>{params.mirrorName}</a>
</Label>

<div>
<Label as='label' style={{ fontSize: 14, marginTop: '1rem' }}>
Expand Down

0 comments on commit 7888c27

Please sign in to comment.