Skip to content

Commit

Permalink
CLDR-16844 Preliminary refactoring for Dashboard
Browse files Browse the repository at this point in the history
-New module cldrDashContext.mjs, mostly code moved from cldrGui.mjs

-Encapsulate some constant strings such as OPEN_DASH_BUTTON_CLASS

-Rename cldrDash.mjs to cldrDashData.mjs for clarity

-Rename TestCldrDash.mjs to TestCldrDashData.mjs

-Remove unused parameter tr from cldrTable.getSingleRowUrl

-Remove some debugging console.log calls from DashboardWidget.vue

-Comments
  • Loading branch information
btangmu committed Jul 18, 2024
1 parent 48406e8 commit abe680b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/cldr-apps/js/src/views/OverallErrors.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const errors = ref(null);
const locale = ref(getCurrentLocale());
async function loadData() {
const resp = getLocaleErrors(locale.value);
const resp = await getLocaleErrors(locale.value);
if (!resp || !resp.body) {
errors.value = null;
} else {
Expand Down

0 comments on commit abe680b

Please sign in to comment.