Skip to content

Commit

Permalink
Merge pull request #196 from keshav-space/195-fix
Browse files Browse the repository at this point in the history
Show `Backup Location` text button only when backup is enabled
  • Loading branch information
keshav-space authored May 12, 2024
2 parents ed59c60 + cc500cb commit cfd0ead
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/views/settings/backup_setting.dart
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ class BackupSettingState extends State<BackupSetting> {
}

Widget _showLocationPath(context) {
if (Platform.isIOS) {
if (Platform.isIOS && validWorkingBackupFullyQualifiedPath.isNotEmpty) {
return Text.rich(
TextSpan(
children: [
Expand Down

0 comments on commit cfd0ead

Please sign in to comment.