Skip to content

Commit 79ffa85

Browse files
Reverted deleted property
1 parent f181d26 commit 79ffa85

File tree

3 files changed

+24
-6
lines changed

3 files changed

+24
-6
lines changed

min/primitives.latest.js

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7127,7 +7127,16 @@ primitives.famdiagram.EventArgs = function () {
71277127
* @type {string[]}
71287128
* @ignore
71297129
*/
7130-
this.parentItems = null;
7130+
this.parentItems = [];
7131+
7132+
/**
7133+
* Child items
7134+
*
7135+
* @type {string[]}
7136+
* @ignore
7137+
*/
7138+
this.childrenItems = [];
7139+
71317140

71327141
/**
71337142
* Node position on the diagram.

min/primitives.min.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src.primitives/Controls/FamDiagram/events/EventArgs.js

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,16 @@ primitives.famdiagram.EventArgs = function () {
2424
* @type {string[]}
2525
* @ignore
2626
*/
27-
this.parentItems = null;
27+
this.parentItems = [];
28+
29+
/**
30+
* Child items
31+
*
32+
* @type {string[]}
33+
* @ignore
34+
*/
35+
this.childrenItems = [];
36+
2837

2938
/**
3039
* Node position on the diagram.

0 commit comments

Comments
 (0)