diff --git a/src/app/components/add-value-dialog/add-value-dialog.component.ts b/src/app/components/add-value-dialog/add-value-dialog.component.ts index 96262ce..c3e0ccb 100644 --- a/src/app/components/add-value-dialog/add-value-dialog.component.ts +++ b/src/app/components/add-value-dialog/add-value-dialog.component.ts @@ -54,6 +54,10 @@ export class AddValueDialogComponent implements OnInit { this.title = this.isEditMode() ? 'Edit Records' : 'Add New Record'; } else { this.title = this.isEditMode() ? 'Edit Value' : 'Add New Value'; + if (this.isEditMode() + && this.data.values && this.data.values.hashMapValues && this.data.values.hashMapValues.length > 1) { + this.title = 'Edit Values'; + } } }