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 ca42f46 commit ffcc443Copy full SHA for ffcc443
pkg/web_app/lib/src/widget/weekly_sparkline/widget.dart
@@ -28,7 +28,7 @@ void create(HTMLElement element, Map<String, String> options) {
28
final weeklyDownloads = decoded.sublist(1);
29
// TODO(https://github.com/dart-lang/pub-dev/issues/8251): Update this to 52.
30
final dataListLength =
31
- weeklyDownloads.length > 40 ? 40 : weeklyDownloads.length;
+ weeklyDownloads.length > 28 ? 28 : weeklyDownloads.length;
32
return List.generate(
33
weeklyDownloads.length,
34
(i) => (
0 commit comments