From b0f1e42a06efe345a218843937577477ee0c8917 Mon Sep 17 00:00:00 2001
From: Quaternions <krakow20@gmail.com>
Date: Mon, 31 Mar 2025 19:57:48 -0700
Subject: [PATCH] web: fix SubmissionInfo type

---
 web/src/app/ts/Submission.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/web/src/app/ts/Submission.ts b/web/src/app/ts/Submission.ts
index e8624da..6e2aa51 100644
--- a/web/src/app/ts/Submission.ts
+++ b/web/src/app/ts/Submission.ts
@@ -23,7 +23,7 @@ interface SubmissionInfo {
     readonly ValidatedAssetID:       number,
     readonly ValidatedAssetVersion:  number,
     readonly Completed:     boolean,
-    readonly TargetAssetID: number,
+    readonly UploadedAssetID: number,
     readonly StatusID:      SubmissionStatus
     readonly StatusMessage: string,
 }