We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69d179c commit b679848Copy full SHA for b679848
src/app/components/add-value-dialog/add-value-dialog.component.ts
@@ -54,6 +54,10 @@ export class AddValueDialogComponent implements OnInit {
54
this.title = this.isEditMode() ? 'Edit Records' : 'Add New Record';
55
} else {
56
this.title = this.isEditMode() ? 'Edit Value' : 'Add New Value';
57
+ if (this.isEditMode()
58
+ && this.data.values && this.data.values.hashMapValues && this.data.values.hashMapValues.length > 1) {
59
+ this.title = 'Edit Values';
60
+ }
61
}
62
63
0 commit comments