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
3 changes: 3 additions & 0 deletions InterlinedList/Views/ListsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -773,6 +773,9 @@ struct ListDetailView: View {
if let idx = items.firstIndex(where: { $0.id == item.id }) {
items[idx] = updated
}
// Refresh the issue list after a close/reopen so it reflects the new
// state (and any GitHub-side changes) consistently, not just the one row.
await loadData()
} catch APIError.status(401) {
authState.handleUnauthorized()
} catch {
Expand Down