Fixes view bug on RDA standards listing.

This commit is contained in:
gkolokythas 2019-11-22 12:47:06 +02:00
parent 8cb993433c
commit 0a47cc19a5
2 changed files with 1 additions and 5 deletions

View File

@ -43,7 +43,7 @@
<mat-form-field class="col">
<mat-label>{{'DATASET-PROFILE-EDITOR.STEPS.FORM.COMPOSITE-FIELD.FIELDS.RDA-COMMON-STANDARDS' | translate}}</mat-label>
<mat-select class="rda-cs" [formControl]="this.form.get('rdaCommonStandard')">
<mat-select [formControl]="this.form.get('rdaCommonStandard')">
<mat-option>--</mat-option>
<mat-option *ngFor="let property of datasetProfileService.getRDACommonStandards()" [value]="property">
{{property}}

View File

@ -1,7 +1,3 @@
.full-width {
width: 100%;
}
.rda-cs {
min-width: 17vw;
}