From 4915e9b921983efc32456b40437db4739b1d3b6c Mon Sep 17 00:00:00 2001 From: Alberto Ponces Date: Mon, 5 Sep 2022 15:31:22 +0100 Subject: [PATCH] fix: Disabled opacity of Manager's update button had a typo --- lib/ui/widgets/homeView/latest_commit_card.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ui/widgets/homeView/latest_commit_card.dart b/lib/ui/widgets/homeView/latest_commit_card.dart index 6c216cf3..e78260ec 100644 --- a/lib/ui/widgets/homeView/latest_commit_card.dart +++ b/lib/ui/widgets/homeView/latest_commit_card.dart @@ -85,7 +85,7 @@ class _LatestCommitCardState extends State { future: locator().hasManagerUpdates(), initialData: false, builder: (context, snapshot) => Opacity( - opacity: snapshot.hasData && snapshot.data! ? 1.0 : 1.0, + opacity: snapshot.hasData && snapshot.data! ? 1.0 : 0.5, child: CustomMaterialButton( isExpanded: false, label: I18nText('latestCommitCard.updateButton'),