Skip to content

Commit

Permalink
CLDR-17658 Fix recently introduced bug, this is undefined (#3777)
Browse files Browse the repository at this point in the history
  • Loading branch information
btangmu authored Jun 3, 2024
1 parent 5fcd56c commit 7edb42e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/cldr-apps/js/src/esm/cldrDash.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ function convertData(json) {
* containing notifications for a single path (old format)
*/
function updatePath(dashData, json) {
this.updatingPath = true;
dashData.updatingPath = true;
try {
if (json.xpstrid in dashData.pathIndex) {
// We already have an entry for this path
Expand All @@ -471,7 +471,7 @@ function updatePath(dashData, json) {
} catch (e) {
cldrNotify.exception(e, "updating path for Dashboard");
}
this.updatingPath = false;
dashData.updatingPath = false;
return dashData; // for unit test
}

Expand Down

0 comments on commit 7edb42e

Please sign in to comment.