Skip to content

Commit

Permalink
fix: Max width for the update progress bar (#679)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbmorley authored Jun 23, 2023
1 parent 592ed62 commit 3828181
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions core/Sources/BookmarksCore/Views/StatusView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ public struct StatusView: View {
case .value(let progress):
ProgressView(value: progress)
.progressViewStyle(.linear)
.frame(maxWidth: 100)
case .done(let date):
TimelineView(.periodic(from: .now, by: 60)) { timeline in
Text("Updated \(date.formatted(.relative(presentation: .named)))")
Expand Down

0 comments on commit 3828181

Please sign in to comment.