Skip to content

Commit

Permalink
remoting fixes (#12137)
Browse files Browse the repository at this point in the history
Release Notes:

- N/A
  • Loading branch information
ConradIrwin authored May 22, 2024
1 parent 8af9fa6 commit c084b6a
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions crates/recent_projects/src/dev_servers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,12 +132,7 @@ impl DevServerProjects {
let markdown = cx.new_view(|cx| Markdown::new("".to_string(), markdown_style, None, cx));

Self {
mode: Mode::CreateDevServer(CreateDevServer {
creating: false,
dev_server_id: None,
access_token: None,
manual_setup: false,
}),
mode: Mode::Default(None),
focus_handle,
scroll_handle: ScrollHandle::new(),
dev_server_store,
Expand All @@ -154,12 +149,16 @@ impl DevServerProjects {
dev_server_id: DevServerId,
cx: &mut ViewContext<Self>,
) {
let path = self.project_path_input.read(cx).text(cx).trim().to_string();
let mut path = self.project_path_input.read(cx).text(cx).trim().to_string();

if path == "" {
return;
}

if !path.starts_with('/') && !path.starts_with('~') {
path = format!("~/{}", path);
}

if self
.dev_server_store
.read(cx)
Expand Down Expand Up @@ -381,7 +380,7 @@ impl DevServerProjects {
creating: false,
dev_server_id: Some(DevServerId(dev_server.dev_server_id)),
access_token: Some(dev_server.access_token),
manual_setup: false,
manual_setup,
});
cx.notify();
})?;
Expand Down

0 comments on commit c084b6a

Please sign in to comment.