Skip to content

Commit b679848

Browse files
committed
fix issue #332
1 parent 69d179c commit b679848

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/app/components/add-value-dialog/add-value-dialog.component.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ export class AddValueDialogComponent implements OnInit {
5454
this.title = this.isEditMode() ? 'Edit Records' : 'Add New Record';
5555
} else {
5656
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+
}
5761
}
5862
}
5963

0 commit comments

Comments
 (0)