diff options
author | Michael Muré <batolettre@gmail.com> | 2021-04-08 13:24:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-08 13:24:26 +0200 |
commit | a3e098d76314fbb197a6fbd85d2e1df02c9e00fe (patch) | |
tree | cd98ec3848de4b5eb17e15daddce9b899b44ca16 /webui/src/components/BugTitleForm | |
parent | abbed0ff129755386ccbf89409ff8c3877f86d20 (diff) | |
parent | d80b2ad03898eb798f8c3c95a4c10bd119691e01 (diff) | |
download | git-bug-a3e098d76314fbb197a6fbd85d2e1df02c9e00fe.tar.gz |
Merge pull request #626 from GlancingMind/upstream-prevent-page-reloads
Prevent page reload for redirecting components
Diffstat (limited to 'webui/src/components/BugTitleForm')
-rw-r--r-- | webui/src/components/BugTitleForm/BugTitleForm.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/webui/src/components/BugTitleForm/BugTitleForm.tsx b/webui/src/components/BugTitleForm/BugTitleForm.tsx index a7d5a820..529f23a2 100644 --- a/webui/src/components/BugTitleForm/BugTitleForm.tsx +++ b/webui/src/components/BugTitleForm/BugTitleForm.tsx @@ -1,4 +1,5 @@ import React, { useState } from 'react'; +import { Link } from 'react-router-dom'; import { Button, makeStyles, Typography } from '@material-ui/core'; @@ -157,7 +158,8 @@ function BugTitleForm({ bug }: Props) { className={classes.greenButton} size="small" variant="contained" - href="/new" + component={Link} + to="/new" > New bug </Button> |