diff --git a/api/src/executor/job.js b/api/src/executor/job.js index c0cd1a6..f7adec2 100644 --- a/api/src/executor/job.js +++ b/api/src/executor/job.js @@ -21,7 +21,7 @@ class Job { this.uuid = uuidv4(); this.runtime = runtime; this.files = files.map((file,i) => ({ - name: file.name || `file${i}`, + name: file.name || `file${i}.code`, content: file.content }));