Trigger status-loading immediately (and not 30 seconds later)

See #1227, #1229, but for status-reporting
This commit is contained in:
Nathan Mattes 2024-02-09 16:52:26 +01:00
parent 23a505b321
commit e912bec350
1 changed files with 3 additions and 1 deletions

View File

@ -117,7 +117,9 @@ extension ReportStatusViewController {
}
navigationActionView.backButton.addTarget(self, action: #selector(ReportStatusViewController.skipButtonDidPressed(_:)), for: .touchUpInside)
navigationActionView.nextButton.addTarget(self, action: #selector(ReportStatusViewController.nextButtonDidPressed(_:)), for: .touchUpInside)
navigationActionView.nextButton.addTarget(self, action: #selector(ReportStatusViewController.nextButtonDidPressed(_:)), for: .touchUpInside)
viewModel.listBatchFetchViewModel.shouldFetch.send()
}
}