Skip to content

Commit 7edb42e

Browse files
authored
CLDR-17658 Fix recently introduced bug, this is undefined (#3777)
1 parent 5fcd56c commit 7edb42e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/cldr-apps/js/src/esm/cldrDash.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ function convertData(json) {
453453
* containing notifications for a single path (old format)
454454
*/
455455
function updatePath(dashData, json) {
456-
this.updatingPath = true;
456+
dashData.updatingPath = true;
457457
try {
458458
if (json.xpstrid in dashData.pathIndex) {
459459
// We already have an entry for this path
@@ -471,7 +471,7 @@ function updatePath(dashData, json) {
471471
} catch (e) {
472472
cldrNotify.exception(e, "updating path for Dashboard");
473473
}
474-
this.updatingPath = false;
474+
dashData.updatingPath = false;
475475
return dashData; // for unit test
476476
}
477477

0 commit comments

Comments
 (0)