Changes the text and adds hint on Field's comment section.
This commit is contained in:
parent
427f8f0595
commit
3efe26d14e
|
@ -37,8 +37,9 @@
|
|||
<mat-icon>add_circle</mat-icon>
|
||||
</button>
|
||||
</div>
|
||||
<mat-form-field *ngIf="compositeFieldFormGroup.get('hasCommentField').value" class="col-12" [formGroup]="compositeFieldFormGroup">
|
||||
<input matInput formControlName="commentFieldValue" placeholder="comment">
|
||||
<mat-form-field *ngIf="compositeFieldFormGroup.get('hasCommentField').value" class="col-12 mb-2" [formGroup]="compositeFieldFormGroup">
|
||||
<input matInput formControlName="commentFieldValue" placeholder="{{'DATASET-PROFILE-EDITOR.STEPS.FORM.COMPOSITE-FIELD.FIELDS.COMMENT-PLACEHOLDER' | translate}}">
|
||||
<mat-hint>{{'DATASET-PROFILE-EDITOR.STEPS.FORM.COMPOSITE-FIELD.FIELDS.COMMENT-HINT' | translate}}</mat-hint>
|
||||
</mat-form-field>
|
||||
<!-- <div class="col"></div>
|
||||
<button class="col-auto" mat-icon-button type="button" (click)="next(compositeField)">
|
||||
|
|
|
@ -157,7 +157,9 @@
|
|||
"MULTIPLICITY-MIN": "Multiplicity Min",
|
||||
"MULTIPLICITY-MAX": "Multiplicity Max",
|
||||
"MULTIPLICITY-ADD-ONE-FIELD": "Add one more fieldset",
|
||||
"ORDER": "Order"
|
||||
"ORDER": "Order",
|
||||
"COMMENT-PLACEHOLDER": "Please Specify",
|
||||
"COMMENT-HINT": "Provide additional information or justification about your selection"
|
||||
},
|
||||
"ACTIONS": {
|
||||
"ADD-CHILD-FIELD": "Add Child Field +"
|
||||
|
|
Loading…
Reference in New Issue