Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -306,8 +306,7 @@ public final class InsulinDeliveryTableViewController: UITableViewController {
private lazy var timeFormatter: DateFormatter = {
let formatter = DateFormatter()

formatter.dateStyle = .none
formatter.timeStyle = .short
formatter.setLocalizedDateFormatFromTemplate("MMMdjmm")

return formatter
}()
Expand Down Expand Up @@ -546,11 +545,7 @@ public final class InsulinDeliveryTableViewController: UITableViewController {
}

if let dose = entry.dose {
description.append(String(describing: dose))
}

if let raw = entry.raw {
description.append(raw.hexadecimalString)
description.append(dose.formatted)
}

return description.joined(separator: "\n\n")
Expand Down