We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fcd56c commit 7edb42eCopy full SHA for 7edb42e
tools/cldr-apps/js/src/esm/cldrDash.mjs
@@ -453,7 +453,7 @@ function convertData(json) {
453
* containing notifications for a single path (old format)
454
*/
455
function updatePath(dashData, json) {
456
- this.updatingPath = true;
+ dashData.updatingPath = true;
457
try {
458
if (json.xpstrid in dashData.pathIndex) {
459
// We already have an entry for this path
@@ -471,7 +471,7 @@ function updatePath(dashData, json) {
471
} catch (e) {
472
cldrNotify.exception(e, "updating path for Dashboard");
473
}
474
- this.updatingPath = false;
+ dashData.updatingPath = false;
475
return dashData; // for unit test
476
477
0 commit comments