Skip to content

Commit abed67a

Browse files
committed
Move submission ID to last column after code snippet
1 parent a007692 commit abed67a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

frontend/src/pages/leaderboard/components/RankingLists.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -201,11 +201,6 @@ export default function RankingsList({
201201
</Typography>
202202
</Grid>
203203
)}
204-
<Grid size={showLoc ? 1.5 : 2}>
205-
<Typography sx={styles.submissionId}>
206-
ID: {item.submission_id}
207-
</Typography>
208-
</Grid>
209204
<Grid size={showLoc ? 2.5 : 3}>
210205
<Typography>
211206
<CodeDialog
@@ -218,6 +213,11 @@ export default function RankingsList({
218213
/>
219214
</Typography>
220215
</Grid>
216+
<Grid size={showLoc ? 1.5 : 2}>
217+
<Typography sx={styles.submissionId}>
218+
ID: {item.submission_id}
219+
</Typography>
220+
</Grid>
221221
</Grid>
222222
))}
223223
</Stack>

0 commit comments

Comments
 (0)