aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/components/BackToListButton.tsx
diff options
context:
space:
mode:
authorSascha <GlancingMind@outlook.com>2021-03-28 11:02:48 +0200
committerSascha <GlancingMind@outlook.com>2021-04-08 11:48:28 +0200
commitd80b2ad03898eb798f8c3c95a4c10bd119691e01 (patch)
treecd98ec3848de4b5eb17e15daddce9b899b44ca16 /webui/src/components/BackToListButton.tsx
parentabbed0ff129755386ccbf89409ff8c3877f86d20 (diff)
downloadgit-bug-d80b2ad03898eb798f8c3c95a4c10bd119691e01.tar.gz
Prevent page reload for redirecting components
Link instantly to: - NewBugPage - BackToList
Diffstat (limited to 'webui/src/components/BackToListButton.tsx')
-rw-r--r--webui/src/components/BackToListButton.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/webui/src/components/BackToListButton.tsx b/webui/src/components/BackToListButton.tsx
index 7ca53ad0..41e1d68a 100644
--- a/webui/src/components/BackToListButton.tsx
+++ b/webui/src/components/BackToListButton.tsx
@@ -1,4 +1,5 @@
import React from 'react';
+import { Link } from 'react-router-dom';
import Button from '@material-ui/core/Button';
import { makeStyles } from '@material-ui/core/styles';
@@ -25,7 +26,8 @@ function BackToListButton() {
variant="contained"
className={classes.backButton}
aria-label="back to issue list"
- href="/"
+ component={Link}
+ to="/"
>
<ArrowBackIcon />
Back to List