Skip to content

Commit f6139aa

Browse files
committed
frontend: run npm format, and tweak
1 parent d695672 commit f6139aa

File tree

1 file changed

+21
-16
lines changed

1 file changed

+21
-16
lines changed

frontend/src/components/standings/StandingsTable.tsx

+21-16
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class TeamGenericCol extends React.Component<TeamGenericColProps> {
6767
const { text, small, to, className = '', ...rest } = this.props;
6868
const rewrittenClassName = 'team-col ' + className;
6969
const content = (
70-
<span className='team-generic-col-content'>
70+
<span className="team-generic-col-content">
7171
{text}
7272
<br />
7373
<small>{small}</small>
@@ -416,22 +416,27 @@ class TeamRowRight extends React.Component<TeamRowRightProps> {
416416
} = this.props;
417417
const { name, university, country } = team;
418418
const universityContent = (
419-
<span className='university-container'>
420-
<span className='university-name' title={university}>
421-
{siteconfig.features.country ? (
422-
<img
423-
src={`/images/${country}.png`}
424-
style={{
425-
width: '19px',
426-
height: '12px',
427-
marginRight: '3px',
428-
marginBottom: '1px',
429-
}}
430-
/>
431-
) : null}
432-
{university}
419+
<span className="university-container">
420+
<span className="university-name" title={university}>
421+
{siteconfig.features.country ? (
422+
<img
423+
src={`/images/${country}.png`}
424+
style={{
425+
width: '19px',
426+
height: '12px',
427+
marginRight: '3px',
428+
marginBottom: '1px',
429+
}}
430+
/>
431+
) : null}
432+
{university}
433+
</span>
434+
<span
435+
className="university-rank"
436+
title={`Rank in the university: ${universityRank}`}
437+
>
438+
[{universityRank || '???'}]
433439
</span>
434-
<span className='university-rank' title={`Rank in the university: ${universityRank}`}> [{universityRank || '???'}]</span>
435440
</span>
436441
);
437442
const to = siteconfig.features.teamPage ? `/team/${teamId}` : undefined;

0 commit comments

Comments
 (0)