1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-10 07:50:05 +00:00

fix: use hash router instead of browser router in react app

This commit is contained in:
2021-10-19 18:39:06 +00:00
parent a5bfdf9503
commit c72867d5a7
3 changed files with 21 additions and 10 deletions

View File

@@ -8,9 +8,10 @@ import Tab from '@mui/material/Tab'
const Header = (props: any) => {
const history = useHistory()
const [tabValue, setTabValue] = useState(0)
const { pathname } = useLocation()
const [tabValue, setTabValue] = useState(pathname)
const handleTabChange = (event: React.SyntheticEvent, value: number) => {
const handleTabChange = (event: React.SyntheticEvent, value: string) => {
setTabValue(value)
}
return (
@@ -28,7 +29,7 @@ const Header = (props: any) => {
marginRight: '25px'
}}
onClick={() => {
setTabValue(0)
setTabValue('/')
history.push('/')
}}
/>
@@ -37,9 +38,19 @@ const Header = (props: any) => {
value={tabValue}
onChange={handleTabChange}
>
<Tab label="Home" to="/" component={Link} />
<Tab label="Drive" to="/SASjsDrive" component={Link} />
<Tab label="Studio" to="/SASjsStudio" component={Link} />
<Tab label="Home" value="/" to="/" component={Link} />
<Tab
label="Drive"
value="/SASjsDrive"
to="/SASjsDrive"
component={Link}
/>
<Tab
label="Studio"
value="/SASjsStudio"
to="/SASjsStudio"
component={Link}
/>
</Tabs>
</Toolbar>
</AppBar>