Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
chore(submissionDetail) : tooltip for hidden TC input
Browse files Browse the repository at this point in the history
  • Loading branch information
kasterra committed May 15, 2024
1 parent a166cff commit 75750e6
Showing 1 changed file with 13 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,13 +131,19 @@ const SubmissionDetailModal = ({ isOpen, onClose, submissionId }: Props) => {
name=""
defaultValue={bytesToSize(result.used_memory)}
/>
<TextArea
title="주어진 표준입력"
disabled
name=""
defaultValue={result.stdin}
height={300}
/>
{result.stdin ? (
<TextArea
title="주어진 표준입력"
disabled
name=""
defaultValue={result.stdin}
height={300}
/>
) : (
<span className={styles.error}>
입력이 제공되지 않았거나, 비공개 TC 입니다
</span>
)}
<TextArea
title="주어진 출력"
disabled
Expand Down

0 comments on commit 75750e6

Please sign in to comment.