We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 710182e commit 46f7a49Copy full SHA for 46f7a49
Loop/View Controllers/StatusTableViewController.swift
@@ -247,7 +247,8 @@ final class StatusTableViewController: LoopChartsTableViewController {
247
// If there is an existing bolus progressCell, update its dose values now in case the app is currently in the
248
// background as otherwise these values won't get initialized and can contain stale data from some earlier bolus.
249
if let progressCell = tableView.cellForRow(at: IndexPath(row: StatusRow.status.rawValue, section: Section.status.rawValue)) as? BolusProgressTableViewCell {
250
- progressCell.configuration = .bolusing(delivered: 0, ofTotalVolume: dose.programmedUnits)
+ progressCell.totalUnits = dose.programmedUnits
251
+ progressCell.deliveredUnits = 0
252
}
253
break
254
0 commit comments