diff --git a/lib/ui/widgets/appInfoView/app_info_viewmodel.dart b/lib/ui/widgets/appInfoView/app_info_viewmodel.dart index ab95a049..a151eece 100644 --- a/lib/ui/widgets/appInfoView/app_info_viewmodel.dart +++ b/lib/ui/widgets/appInfoView/app_info_viewmodel.dart @@ -133,7 +133,8 @@ class AppInfoViewModel extends BaseViewModel { builder: (context) => AlertDialog( title: I18nText('appInfoView.appliedPatchesLabel'), backgroundColor: Theme.of(context).colorScheme.secondaryContainer, - content: Text(getAppliedPatchesString(app.appliedPatches)), + content: SingleChildScrollView( + child: Text(getAppliedPatchesString(app.appliedPatches))), actions: [ CustomMaterialButton( label: I18nText('okButton'),