web: use pointer for review cards
This commit is contained in:
@@ -522,7 +522,10 @@ export default function ReviewerDashboardPage() {
|
||||
mb: 4
|
||||
}}>
|
||||
{canReviewSubmissions && (
|
||||
<Card onClick={()=>setTabValue(tabIndexSubmissions)}>
|
||||
<Card
|
||||
onClick={() => setTabValue(tabIndexSubmissions)}
|
||||
sx={{ cursor: 'pointer' }}
|
||||
>
|
||||
<CardContent>
|
||||
<Box sx={{ display: 'flex', alignItems: 'center', gap: 2 }}>
|
||||
<AssignmentIcon sx={{ fontSize: 40, color: 'primary.main' }} />
|
||||
@@ -546,7 +549,10 @@ export default function ReviewerDashboardPage() {
|
||||
)}
|
||||
|
||||
{canReviewMapfixes && (
|
||||
<Card onClick={()=>setTabValue(tabIndexMapfixes)}>
|
||||
<Card
|
||||
onClick={() => setTabValue(tabIndexMapfixes)}
|
||||
sx={{ cursor: 'pointer' }}
|
||||
>
|
||||
<CardContent>
|
||||
<Box sx={{ display: 'flex', alignItems: 'center', gap: 2 }}>
|
||||
<BuildIcon sx={{ fontSize: 40, color: 'secondary.main' }} />
|
||||
|
||||
Reference in New Issue
Block a user