Skip to content

Commit

Permalink
fix: Optimize length of reserved active change space
Browse files Browse the repository at this point in the history
  • Loading branch information
spydon committed Sep 10, 2024
1 parent e31db4e commit 3d083db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/app_center/lib/manage/manage_snap_tile.dart
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ class ManageSnapTile extends StatelessWidget {
],
),
trailing: SizedBox(
width: 250,
width: 260,
child: Align(
alignment: Alignment.centerRight,
child: _ButtonBar(snap, showUpdateButton),
Expand Down
2 changes: 1 addition & 1 deletion packages/app_center/test/manage_page_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ void main() {

final refreshButton =
find.buttonWithText(tester.l10n.snapActionUpdatingLabel);
expect(refreshButton, findsExactly(2));
expect(refreshButton, findsOneWidget);
expect(refreshButton, isDisabled);

final testTile = find.snapTile('Snap with an update');
Expand Down

0 comments on commit 3d083db

Please sign in to comment.