Skip to content

Commit

Permalink
www/Job: Do not display A/B compare status and show task as set
Browse files Browse the repository at this point in the history
This remove A/B compare which we never use it yet, and it is "Set" in the
submission andlogs says Task, make it consistent
  • Loading branch information
vibhoothi committed Dec 29, 2023
1 parent 4ece03c commit a0eff32
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions www/src/components/Job.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,10 +149,10 @@ export class JobComponent extends React.Component<JobProps, {
if (job.buildOptions) details.push(keyValue("Build", job.buildOptions));
details.push(keyValue("Codec", job.codec));
details.push(keyValue("Commit", job.commit));
details.push(keyValue("Task", job.task));
details.push(keyValue("Set", job.task));
details.push(keyValue("Qualities", job.qualities));
details.push(keyValue("Run A/B Compare", job.runABCompare));
details.push(keyValue("Save Encoded Files", job.saveEncodedFiles));
// details.push(keyValue("Run A/B Compare", job.runABCompare));
// details.push(keyValue("Save Encoded Files", job.saveEncodedFiles));
if (job.ctcSets) details.push(keyValue("CTC Sets", JSON.stringify(job.ctcSets)));
if (job.ctcPresets) details.push(keyValue("CTC Presets", JSON.stringify(job.ctcPresets)));
if (job.ctcVersion) details.push(keyValue("CTC Version", job.ctcVersion));
Expand Down

0 comments on commit a0eff32

Please sign in to comment.