Skip to content

Commit

Permalink
Auto-populate judge name in video call
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelraman committed Mar 14, 2021
1 parent c09d8fa commit e0ad012
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/judge/PageJudging.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ const PageJudgingComponent: React.FC<PageJudgingProps> = (props) => {
<h3><a href={state.currentProject!.devpostURL} style={{ textDecoration: 'underline' }} target='_blank'>View DevPost Submission</a></h3>
<h6><span style={{ color: props.tableGroups[state.currentProject!.tableGroupID].color }}>{props.tableGroups[state.currentProject!.tableGroupID].name}</span> {state.currentProject!.tableNumber}</h6>
<iframe
src={state.currentProject!.roomUrl}
src={state.currentProject!.roomUrl + "?name=[Judge] " + props.account.name}
allow="camera; microphone; fullscreen; speaker"
width="90%"
style={{ height: "75vh" }}>
Expand Down

0 comments on commit e0ad012

Please sign in to comment.