Skip to content

Commit

Permalink
fix: Fix typo on menu options visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ponces committed Sep 17, 2022
1 parent ef3685c commit a178afc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ui/views/installer/installer_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class InstallerView extends StatelessWidget {
),
actions: <Widget>[
Visibility(
visible: !model.isPatching && model.hasErrors,
visible: !model.isPatching && !model.hasErrors,
child: CustomPopupMenu(
onSelected: (value) => model.onMenuSelection(value),
children: {
Expand Down

0 comments on commit a178afc

Please sign in to comment.