Skip to content

Commit 9204de9

Browse files
jahtalabmatsko
authored andcommittedJul 11, 2019
fix: use the correct WTF array to iterate over (#31208)
PR Close #31208
1 parent 7c62a8f commit 9204de9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/zone.js/lib/browser/event-target-legacy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export function eventTargetLegacyPatch(_global: any, api: _ZonePrivate) {
5252
}
5353

5454
// predefine all task.source string
55-
for (let i = 0; i < WTF_ISSUE_555.length; i++) {
55+
for (let i = 0; i < WTF_ISSUE_555_ARRAY.length; i++) {
5656
const target: any = WTF_ISSUE_555_ARRAY[i];
5757
const targets: any = globalSources[target] = {};
5858
for (let j = 0; j < eventNames.length; j++) {

0 commit comments

Comments
 (0)
Please sign in to comment.