Don't show 'Changes' button if it doesn't do anything

This commit is contained in:
Imran Remtulla
2023-03-19 12:44:17 -04:00
parent 280827d8ec
commit f1fc43a3e7

View File

@@ -431,7 +431,9 @@ class AppsPageState extends State<AppsPage> {
child: Text(
listedApps[index].app.releaseDate ==
null
? tr('changes')
? showChanges != null
? tr('changes')
: ''
: DateFormat('yyyy-MM-dd')
.format(listedApps[index]
.app