add maximum multiplicity message
This commit is contained in:
parent
7c83fd0e67
commit
330231f217
|
@ -283,6 +283,7 @@ export class DescriptionTemplateEditorComponent extends BaseEditor<DescriptionTe
|
||||||
dialogRef.afterClosed().pipe(takeUntil(this._destroyed)).subscribe(result => {
|
dialogRef.afterClosed().pipe(takeUntil(this._destroyed)).subscribe(result => {
|
||||||
if (result) {
|
if (result) {
|
||||||
this.formGroup.get('status').setValue(DescriptionTemplateStatus.Finalized);
|
this.formGroup.get('status').setValue(DescriptionTemplateStatus.Finalized);
|
||||||
|
if(this.isNewVersion) this.isNewVersion = false;
|
||||||
this.persistEntity();
|
this.persistEntity();
|
||||||
}});
|
}});
|
||||||
}
|
}
|
||||||
|
|
|
@ -105,6 +105,7 @@
|
||||||
<a [ngClass]="{'drag-handle-disabled': true}" class="add-description-action">
|
<a [ngClass]="{'drag-handle-disabled': true}" class="add-description-action">
|
||||||
<mat-icon>add</mat-icon>{{'DMP-EDITOR.ACTIONS.ADD-DESCRIPTION-IN-SECTION' | translate}}
|
<mat-icon>add</mat-icon>{{'DMP-EDITOR.ACTIONS.ADD-DESCRIPTION-IN-SECTION' | translate}}
|
||||||
</a>
|
</a>
|
||||||
|
<small class="text-danger">{{'DMP-EDITOR.DESCRIPTION-TEMPLATES-MAX-MULTIPLICITY'| translate}}</small>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1295,6 +1295,7 @@
|
||||||
"LOCKED": "Locked",
|
"LOCKED": "Locked",
|
||||||
"DESCRIPTION": "Description",
|
"DESCRIPTION": "Description",
|
||||||
"NO-TEMPLATE-MESSAGE": "If you can't find a template or if you want to create a personalized template for your institution, research community or training needs, please contact us.",
|
"NO-TEMPLATE-MESSAGE": "If you can't find a template or if you want to create a personalized template for your institution, research community or training needs, please contact us.",
|
||||||
|
"DESCRIPTION-TEMPLATES-MAX-MULTIPLICITY": "Description Templates has reached the maximun multiplicity",
|
||||||
"FIELDS": {
|
"FIELDS": {
|
||||||
"TITLE": "Title of Plan",
|
"TITLE": "Title of Plan",
|
||||||
"DESCRIPTION": "Description",
|
"DESCRIPTION": "Description",
|
||||||
|
|
Loading…
Reference in New Issue