Skip to content

Commit

Permalink
improve how timline step options are displayed
Browse files Browse the repository at this point in the history
  • Loading branch information
infacc committed Aug 4, 2023
1 parent f2de977 commit 0be05f3
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ <h1 mat-dialog-title>Export Config</h1>
<mat-selection-list>
<mat-list-option *ngFor="let step of stepListPage" [value]="step.sequence" [selected]="stepList.includes(step.sequence)"
(selectedChange)="selectStep(step.sequence, $event)">
Step {{step.sequence}} ({{step.processorName}}@{{step.processorVersion}}) - Status: {{step.status}}, Result Quality: {{step.resultQuality}}
<div class="export-selection">
<span>Step {{step.sequence}} ({{step.processorName}}@{{step.processorVersion}})</span>
<qhana-step-status matTooltip="Status: {{step.status}}" [step]="step" [noText]="step.status !== 'PENDING'" [spinner]="0"></qhana-step-status>
<div matTooltip="Result Quality" *ngIf="step.resultQuality !== 'UNKNOWN'">- Quality: {{step.resultQuality}}</div>
</div>
</mat-list-option>
</mat-selection-list>
</div>
Expand Down

0 comments on commit 0be05f3

Please sign in to comment.