Mercurial > hg > ugly-duckling
annotate src/app/feature-extraction-menu/feature-extraction-menu.component.html @ 509:041468f553e1 tip master
Merge pull request #57 from LucasThompson/fix/session-stack-max-call-stack
Fix accidental recursion in PersistentStack
author | Lucas Thompson <LucasThompson@users.noreply.github.com> |
---|---|
date | Mon, 27 Nov 2017 11:04:30 +0000 |
parents | cf4a17efb5d4 |
children |
rev | line source |
---|---|
dev@100 | 1 <div class="container"> |
dev@505 | 2 <mat-list dense> |
dev@423 | 3 <ng-container |
dev@100 | 4 *ngFor="let extractor of extractors" |
dev@100 | 5 > |
dev@505 | 6 <h3 mat-subheader>{{extractor.name}}</h3> |
dev@505 | 7 <mat-list-item |
dev@431 | 8 *ngFor="let output of extractor.outputs" |
dev@431 | 9 (click)="extract(output)"> |
dev@505 | 10 <mat-icon mat-list-icon>{{getFeatureIconName(output)}}</mat-icon> |
dev@505 | 11 <h4 mat-line>{{output.name}}</h4> |
dev@505 | 12 <p mat-line>{{output.combinedKey}}</p> |
dev@505 | 13 <button mat-icon-button |
dev@432 | 14 (click)="extract(output); $event.stopPropagation()" |
dev@432 | 15 [disabled]="disabled"> |
dev@505 | 16 <mat-icon>add</mat-icon> |
dev@423 | 17 </button> |
dev@505 | 18 </mat-list-item> |
dev@505 | 19 <mat-divider></mat-divider> |
dev@423 | 20 </ng-container> |
dev@505 | 21 </mat-list> |
dev@505 | 22 <mat-spinner |
dev@505 | 23 *ngIf="isLoading" |
dev@505 | 24 [diameter]="25" |
dev@505 | 25 [strokeWidth]="2" |
dev@505 | 26 ></mat-spinner> |
dev@433 | 27 <button |
dev@505 | 28 mat-button |
dev@433 | 29 (click)="load()" |
dev@434 | 30 [disabled]="isLoading" |
dev@437 | 31 >Load more</button> |
dev@100 | 32 </div> |