collab_ui: Show signed-out state when not connected to Collab (#35832)
This PR updates signed-out state of the Collab panel to show when not connected to Collab, as opposed to just when the user is signed-out. Release Notes: - N/A
This commit is contained in:
parent
d50af2f39c
commit
33804db0ef
1 changed files with 1 additions and 1 deletions
|
@ -3053,7 +3053,7 @@ impl Render for CollabPanel {
|
|||
.on_action(cx.listener(CollabPanel::move_channel_down))
|
||||
.track_focus(&self.focus_handle)
|
||||
.size_full()
|
||||
.child(if self.user_store.read(cx).current_user().is_none() {
|
||||
.child(if !self.client.status().borrow().is_connected() {
|
||||
self.render_signed_out(cx)
|
||||
} else {
|
||||
self.render_signed_in(window, cx)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue