diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-08-12 02:08:55 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-08-12 02:10:36 +0900 |
| commit | 699c5ce665bae6bcc406a0f7de994bb218a9977e (patch) | |
| tree | a1c97c6e9f123bffbc5836a9a603352a0fb426aa /frontend/app/components/ExecStatusIndicatorIcon.tsx | |
| parent | 9f022ce7e59213284896a07a53bfef232a6e62d3 (diff) | |
| download | iosdc-japan-2025-albatross-699c5ce665bae6bcc406a0f7de994bb218a9977e.tar.gz iosdc-japan-2025-albatross-699c5ce665bae6bcc406a0f7de994bb218a9977e.tar.zst iosdc-japan-2025-albatross-699c5ce665bae6bcc406a0f7de994bb218a9977e.zip | |
feat(frontend): show submission result at first rendering
Diffstat (limited to 'frontend/app/components/ExecStatusIndicatorIcon.tsx')
| -rw-r--r-- | frontend/app/components/ExecStatusIndicatorIcon.tsx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/frontend/app/components/ExecStatusIndicatorIcon.tsx b/frontend/app/components/ExecStatusIndicatorIcon.tsx index 13343b8..5277bfa 100644 --- a/frontend/app/components/ExecStatusIndicatorIcon.tsx +++ b/frontend/app/components/ExecStatusIndicatorIcon.tsx @@ -1,5 +1,6 @@ import { faBan, + faCircle, faCircleCheck, faCircleExclamation, faRotate, @@ -13,6 +14,10 @@ type Props = { export default function ExecStatusIndicatorIcon({ status }: Props) { switch (status) { + case "waiting_submission": + return ( + <FontAwesomeIcon icon={faCircle} fixedWidth className="text-gray-400" /> + ); case "running": return ( <FontAwesomeIcon |
