2.5.0 #10

Merged
rune merged 41 commits from 2.5.0 into main 2026-08-03 08:33:23 +02:00
Showing only changes of commit 727fc7d6af - Show all commits
+5
View File
@@ -167,6 +167,11 @@ struct SidebarView: View {
}
.onChange(of: chatViewModel.currentConversationName) { loadData() }
.onChange(of: chatViewModel.messages.count) { loadData() }
.onChange(of: chatViewModel.showConversations) { _, isShowing in
// Folders/conversations created, renamed, or deleted in the advanced
// conversation list modal live in its own @State refresh ours once it closes.
if !isShowing { loadData() }
}
}
@ViewBuilder