Skip to content

Commit

Permalink
Moved number of models selected to first box in the workflow geneonto…
Browse files Browse the repository at this point in the history
  • Loading branch information
tmushayahama committed Oct 5, 2020
1 parent ce167f1 commit bad12a9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/app/main/apps/noctua-search/noctua-search.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -94,16 +94,17 @@ <h4 *ngIf="!noctuaUserService.user">
<div class="noc-art-tabs" fxLayout="row" fxLayoutAlign="center center">
<div class="noc-line noc-visited" fxFlex>
</div>
<button mat-stroked-button (click)="selectMiddlePanel(MiddlePanel.cams)" class="" color="" [ngClass]="{'noc-active': noctuaSearchMenuService.selectedMiddlePanel === MiddlePanel.cams,
<button mat-stroked-button (click)="selectMiddlePanel(MiddlePanel.cams)"
matBadge="{{artBasket?.cams.length}}" matBadgePosition="after" matBadgeColor="warn" class="" color=""
[ngClass]="{'noc-active': noctuaSearchMenuService.selectedMiddlePanel === MiddlePanel.cams,
'noc-visited': noctuaSearchMenuService.reviewLevel>0}">
<div class="noc-title">Select Models</div><br>
<div class="noc-description">Add/remove to review</div>
</button>
<div class="noc-line" fxFlex="80px" [ngClass]="{'noc-visited': noctuaSearchMenuService.reviewLevel>0}">
</div>
<button mat-stroked-button (click)="selectMiddlePanel(MiddlePanel.camsReview)" [ngClass]="{'noc-active': noctuaSearchMenuService.selectedMiddlePanel === MiddlePanel.camsReview,
'noc-visited': noctuaSearchMenuService.reviewLevel>1}" matBadge="{{artBasket?.cams.length}}"
matBadgePosition="after" matBadgeColor="warn" class="" color="">
'noc-visited': noctuaSearchMenuService.reviewLevel>1}" class="" color="">
<div class="noc-title">Review Models</div> <br>
<div class="noc-description">Review selected models</div>
</button>
Expand Down

0 comments on commit bad12a9

Please sign in to comment.