Compare commits

..

No commits in common. "ffdb9d92fb9067fb9e0bc288a5dc91f7243d29bb" and "c179a109fd77edc41a3076dd9d8155824cec7f8b" have entirely different histories.

1 changed files with 2 additions and 8 deletions

View File

@ -38,14 +38,8 @@ class BackupDetailsPage extends StatelessWidget {
: StateType.uninitialized;
final bool preventActions = backupsState.preventActions;
final List<Backup> backups = backupsState.backups;
final List<Service> services = context
.watch<ServicesBloc>()
.state
.servicesThatCanBeBackedUp
.where(
(final service) => service.isEnabled,
)
.toList();
final List<Service> services =
context.watch<ServicesBloc>().state.servicesThatCanBeBackedUp;
final Duration? autobackupPeriod = backupsState.autobackupPeriod;
final List<ServerJob> backupJobs = context
.watch<ServerJobsBloc>()