File tree Expand file tree Collapse file tree
frontend/src/components/Wrapped Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -169,11 +169,11 @@ const SummarySlide = ({ wrappedData }: SummarySlideProps) => {
169169 >
170170 < div >
171171 < p className = "text-sm" style = { { color : COLORS . subtext0 } } > Campus Rank</ p >
172- < p className = "text-3xl font-bold" style = { { color : COLORS . mauve } } > { data . campusRank } </ p >
172+ < p className = "text-3xl font-bold" style = { { color : COLORS . mauve } } > { data . campusRank == 0 ? "-" : data . campusRank } </ p >
173173 </ div >
174174 < div >
175175 < p className = "text-sm" style = { { color : COLORS . subtext0 } } > Batch Rank</ p >
176- < p className = "text-3xl font-bold" style = { { color : COLORS . mauve } } > { data . batchRank } </ p >
176+ < p className = "text-3xl font-bold" style = { { color : COLORS . mauve } } > { data . batchRank == 0 ? "-" : data . batchRank } </ p >
177177 </ div >
178178 </ div >
179179
You can’t perform that action at this time.
0 commit comments