Skip to content
Snippets Groups Projects

Fix bug and replace nebular by material for some module

Merged Charly Maeder requested to merge fix/describe_repository_api into master
8 files
+ 107
77
Compare changes
  • Side-by-side
  • Inline
Files
8
<nb-card nbSpinnerSize="giant">
<nb-card-header>Select dataset id</nb-card-header>
<nb-card-body>
<nb-select multiple [(selected)]="datasetIdSelected">
<nb-option *ngFor="let id of datasetId" [value]="id">{{id}}</nb-option>
</nb-select>
<h1 mat-dialog-title>Select dataset id</h1>
<div mat-dialog-content>
<mat-form-field appearance="fill">
<mat-select multiple [(ngModel)]="datasetIdSelected">
<mat-option *ngFor="let id of data.datasetId" [value]="id">{{id}}</mat-option>
</mat-select>
</mat-form-field>
<div>
<button nbButton status="danger" (click)="closeDialog()">Prev</button>
<button nbButton (click)="onClickNext()" [disabled]="datasetIdSelected.length === 0">Next</button>
</div>
</nb-card-body>
</nb-card>
\ No newline at end of file
<div>
<button nbButton status="danger" (click)="closeDialog()">Prev</button>
<button nbButton (click)="onClickNext()" [disabled]="datasetIdSelected.length === 0">Next</button>
</div>
</div>
\ No newline at end of file
Loading