Skip to content

Commit

Permalink
v1.1.5+50
Browse files Browse the repository at this point in the history
fix: top100 shows 80 -> 100
  • Loading branch information
w8385 committed Mar 25, 2023
1 parent 9775740 commit aaa8164
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion my_solved/lib/widgets/user_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ Widget top100(
future: future,
builder: (context, snapshot) {
if (snapshot.hasData) {
int count = min(80, snapshot.data?.count ?? 0);
int count = min(100, snapshot.data?.count ?? 0);
return Column(
children: [
Container(
Expand Down
2 changes: 1 addition & 1 deletion my_solved/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: For solving problems in the world of programming; base on solved.ac

publish_to: 'none' # Remove this line if you wish to publish to pub.dev

version: 1.1.5+49
version: 1.1.5+50

environment:
sdk: '>=2.18.2 <3.0.0'
Expand Down

0 comments on commit aaa8164

Please sign in to comment.