Compare commits

..

No commits in common. "f603fe4e0f299822585530e3cc580127a6e1efd7" and "0de6afd2d138ecee8fbf281648bb5a5f6c8104c2" 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>()