Compare commits

..

No commits in common. "83dab4e9282ba93395aa2cf012bc13c075cc0e93" and "9fa3e4902561d41f7083af0241a9efbf13e6301e" 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>()