Loading codegen/package.json +1 −1 Original line number Diff line number Diff line { "name": "@inject/codegen", "version": "3.0.1", "version": "3.0.2", "description": "GraphQL API Codegen Setup for the Inject Backend", "main": "index.js", "license": "MIT", Loading frontend/package.json +1 −1 Original line number Diff line number Diff line { "name": "@inject/frontend", "version": "3.0.1", "version": "3.0.2", "description": "Main wrapper for rendering INJECT Frontend", "main": "index.js", "license": "MIT", Loading frontend/src/exercisepanel/ExerciseManager/ExerciseCreator.tsx +1 −1 Original line number Diff line number Diff line Loading @@ -27,7 +27,7 @@ const overrideConfigClass = css` margin-top: 1rem; ` const TEAMS_MAX = 20 const TEAMS_MAX = 50 interface ExerciseCreatorProps { open: boolean Loading frontend/src/pages/instructor/[exerciseId]/[teamId]/email/_layout.tsx +8 −2 Original line number Diff line number Diff line Loading @@ -14,7 +14,10 @@ const SentByTeam = () => { const { exerciseId, teamId } = useParams( '/instructor/:exerciseId/:teamId/email' ) const count = useGetEmailThreadUnreadCountSuspense(teamId, 'sent') const count = useGetEmailThreadUnreadCountSuspense( teamId, EmailSelection.SENT ) return ( <LinkButton link={[ Loading Loading @@ -42,7 +45,10 @@ const ReceivedByTeam = () => { const { exerciseId, teamId } = useParams( '/instructor/:exerciseId/:teamId/email' ) const count = useGetEmailThreadUnreadCountSuspense(teamId, 'received') const count = useGetEmailThreadUnreadCountSuspense( teamId, EmailSelection.RECEIVED ) return ( <LinkButton Loading frontend/src/pages/trainee/[exerciseId]/[teamId]/email/_layout.tsx +8 −2 Original line number Diff line number Diff line Loading @@ -10,7 +10,10 @@ import { Outlet } from 'react-router-dom' const Received = () => { const { exerciseId, teamId } = useParams('/trainee/:exerciseId/:teamId/email') const count = useGetEmailThreadUnreadCountSuspense(teamId, 'received') const count = useGetEmailThreadUnreadCountSuspense( teamId, EmailSelection.RECEIVED ) return ( <LinkButton link={[ Loading @@ -35,7 +38,10 @@ const Received = () => { const Sent = () => { const { exerciseId, teamId } = useParams('/trainee/:exerciseId/:teamId/email') const count = useGetEmailThreadUnreadCountSuspense(teamId, 'sent') const count = useGetEmailThreadUnreadCountSuspense( teamId, EmailSelection.SENT ) return ( <LinkButton Loading Loading
codegen/package.json +1 −1 Original line number Diff line number Diff line { "name": "@inject/codegen", "version": "3.0.1", "version": "3.0.2", "description": "GraphQL API Codegen Setup for the Inject Backend", "main": "index.js", "license": "MIT", Loading
frontend/package.json +1 −1 Original line number Diff line number Diff line { "name": "@inject/frontend", "version": "3.0.1", "version": "3.0.2", "description": "Main wrapper for rendering INJECT Frontend", "main": "index.js", "license": "MIT", Loading
frontend/src/exercisepanel/ExerciseManager/ExerciseCreator.tsx +1 −1 Original line number Diff line number Diff line Loading @@ -27,7 +27,7 @@ const overrideConfigClass = css` margin-top: 1rem; ` const TEAMS_MAX = 20 const TEAMS_MAX = 50 interface ExerciseCreatorProps { open: boolean Loading
frontend/src/pages/instructor/[exerciseId]/[teamId]/email/_layout.tsx +8 −2 Original line number Diff line number Diff line Loading @@ -14,7 +14,10 @@ const SentByTeam = () => { const { exerciseId, teamId } = useParams( '/instructor/:exerciseId/:teamId/email' ) const count = useGetEmailThreadUnreadCountSuspense(teamId, 'sent') const count = useGetEmailThreadUnreadCountSuspense( teamId, EmailSelection.SENT ) return ( <LinkButton link={[ Loading Loading @@ -42,7 +45,10 @@ const ReceivedByTeam = () => { const { exerciseId, teamId } = useParams( '/instructor/:exerciseId/:teamId/email' ) const count = useGetEmailThreadUnreadCountSuspense(teamId, 'received') const count = useGetEmailThreadUnreadCountSuspense( teamId, EmailSelection.RECEIVED ) return ( <LinkButton Loading
frontend/src/pages/trainee/[exerciseId]/[teamId]/email/_layout.tsx +8 −2 Original line number Diff line number Diff line Loading @@ -10,7 +10,10 @@ import { Outlet } from 'react-router-dom' const Received = () => { const { exerciseId, teamId } = useParams('/trainee/:exerciseId/:teamId/email') const count = useGetEmailThreadUnreadCountSuspense(teamId, 'received') const count = useGetEmailThreadUnreadCountSuspense( teamId, EmailSelection.RECEIVED ) return ( <LinkButton link={[ Loading @@ -35,7 +38,10 @@ const Received = () => { const Sent = () => { const { exerciseId, teamId } = useParams('/trainee/:exerciseId/:teamId/email') const count = useGetEmailThreadUnreadCountSuspense(teamId, 'sent') const count = useGetEmailThreadUnreadCountSuspense( teamId, EmailSelection.SENT ) return ( <LinkButton Loading