Skip to content

Commit 6730e98

Browse files
author
Harry Hummel
authored
Merge branch 'master' into update-queues-163
2 parents df2c831 + d1dfada commit 6730e98

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

frontend/src/components/ParticipantsList.js

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import TableHead from "@material-ui/core/TableHead"
1010
import TableRow from "@material-ui/core/TableRow"
1111
import Fab from "@material-ui/core/Fab"
1212
import AddIcon from "@material-ui/icons/Add"
13+
import AssignmentIcon from "@material-ui/icons/Assignment"
1314
import { observer } from "mobx-react-lite"
1415

1516
const ParticipantsList = observer(() => {
@@ -67,7 +68,7 @@ const ParticipantsList = observer(() => {
6768
<Typography>Race</Typography>
6869
</TableCell>
6970
<TableCell>
70-
<Typography>Add</Typography>
71+
<Typography>Participant Details</Typography>
7172
</TableCell>
7273
</TableRow>
7374
</TableHead>
@@ -96,9 +97,11 @@ const ParticipantsList = observer(() => {
9697
<Typography>Race</Typography>
9798
</TableCell>
9899
<TableCell>
99-
<Fab color="primary" size="small" aria-label="add">
100-
<AddIcon />
101-
</Fab>
100+
<Link to="/participantInfo">
101+
<Fab color="primary" size="small" aria-label="add">
102+
<AssignmentIcon />
103+
</Fab>
104+
</Link>
102105
</TableCell>
103106
</TableRow>
104107
))}

frontend/yarn.lock

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6145,6 +6145,15 @@ mini-create-react-context@^0.3.0:
61456145
gud "^1.0.0"
61466146
tiny-warning "^1.0.2"
61476147

6148+
mini-create-react-context@^0.3.0:
6149+
version "0.3.2"
6150+
resolved "https://registry.yarnpkg.com/mini-create-react-context/-/mini-create-react-context-0.3.2.tgz#79fc598f283dd623da8e088b05db8cddab250189"
6151+
integrity sha512-2v+OeetEyliMt5VHMXsBhABoJ0/M4RCe7fatd/fBy6SMiKazUSEt3gxxypfnk2SHMkdBYvorHRoQxuGoiwbzAw==
6152+
dependencies:
6153+
"@babel/runtime" "^7.4.0"
6154+
gud "^1.0.0"
6155+
tiny-warning "^1.0.2"
6156+
61486157
minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1:
61496158
version "1.0.1"
61506159
resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"

0 commit comments

Comments
 (0)