Skip to content

Commit

Permalink
fix(client): fix separator in submission details header
Browse files Browse the repository at this point in the history
  • Loading branch information
fushar committed Oct 15, 2023
1 parent b68cea8 commit bbfe699
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export function SubmissionDetails({
};

const renderGeneralInfo = () => {
const separator = <>&nbsp;&#9679;&nbsp;</>;
const separator = <>&nbsp;&bull;&nbsp;</>;

const grading = latestGrading;

Expand All @@ -77,9 +77,8 @@ export function SubmissionDetails({
</h4>
)}
<p>
{grading && <GradingVerdictTag grading={grading} />} {separator} <UserRef profile={profile} />
{separator} {getGradingLanguageName(gradingLanguage)}
{separator}{' '}
{grading && <GradingVerdictTag grading={grading} />} {separator} <UserRef profile={profile} /> {separator}{' '}
{getGradingLanguageName(gradingLanguage)} {separator}{' '}
<span className="general-info__time">
<FormattedDate value={time} showSeconds />
</span>
Expand Down

0 comments on commit bbfe699

Please sign in to comment.