We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1456fc6 commit a52a245Copy full SHA for a52a245
frontend/dashboard/src/components/dashboard.tsx
@@ -6,10 +6,11 @@ import { Container,
6
CardActionArea
7
} from '@mui/material';
8
import React from 'react';
9
+import { Link } from 'react-router-dom';
10
11
const workflowsCard = (
12
<React.Fragment>
- <CardActionArea href="/workflows">
13
+ <CardActionArea component={Link} to="/workflows">
14
<CardContent>
15
<Typography gutterBottom variant="h5" component="div">
16
Workflows
@@ -25,7 +26,7 @@ const workflowsCard = (
25
26
27
const templatesCard = (
28
- <CardActionArea href='/templates'>
29
+ <CardActionArea component={Link} to='/templates'>
30
31
32
Templates
0 commit comments