Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tools/cldr-apps/js/src/views/DashboardWidget.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
</span>
<span class="right-control">
<span
title="Include ALL paths in selected coverage level. May be very large!"
v-if="!includeOther"
class="cldr-nav-btn"
@click="reloadIncludeOther"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,13 @@ public Response getParticipationFor(
coverageLevel = org.unicode.cldr.util.Level.fromString(level);
}
ReviewOutput reviewOutput =
new Dashboard().get(loc, target, coverageLevel, null /* xpath */, false);
new Dashboard()
.get(
loc,
target,
coverageLevel,
null /* xpath */,
false /* includeOther */);
reviewOutput.coverageLevel = coverageLevel.name();

ParticipationResults participationResults =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,13 @@ private static Dashboard.ReviewNotification[] getOnePathDash(
String baseXp, CLDRLocale locale, CookieSession mySession) {
Level coverageLevel = Level.get(mySession.getEffectiveCoverageLevel(locale.toString()));
Dashboard.ReviewOutput ro =
new Dashboard().get(locale, mySession.user, coverageLevel, baseXp, false);
new Dashboard()
.get(
locale,
mySession.user,
coverageLevel,
baseXp,
false /* includeOther */);
return ro.getNotifications();
}

Expand Down
Loading