diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-09-06 10:44:05 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-09-06 10:44:05 +0900 |
| commit | 04b890d202b23fef6803869db98810ad6f3af4c0 (patch) | |
| tree | 0090949c2e4e84173b5c34a1d0f916104fa7b03b /frontend/app/components/SubmitStatusLabel.tsx | |
| parent | 36c32bdbaf65a859d6ce25aefd56df189907453c (diff) | |
| download | iosdc-japan-2025-albatross-04b890d202b23fef6803869db98810ad6f3af4c0.tar.gz iosdc-japan-2025-albatross-04b890d202b23fef6803869db98810ad6f3af4c0.tar.zst iosdc-japan-2025-albatross-04b890d202b23fef6803869db98810ad6f3af4c0.zip | |
fix(*): support compile_error as worker result
Diffstat (limited to 'frontend/app/components/SubmitStatusLabel.tsx')
| -rw-r--r-- | frontend/app/components/SubmitStatusLabel.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/frontend/app/components/SubmitStatusLabel.tsx b/frontend/app/components/SubmitStatusLabel.tsx index 8384e95..b3091b0 100644 --- a/frontend/app/components/SubmitStatusLabel.tsx +++ b/frontend/app/components/SubmitStatusLabel.tsx @@ -16,6 +16,8 @@ export default function SubmitStatusLabel({ status }: Props) { return "テスト失敗"; case "timeout": return "時間切れ"; + case "compile_error": + return "コンパイルエラー"; case "runtime_error": return "実行時エラー"; case "internal_error": |
