mirror of
https://github.com/zed-industries/zed.git
synced 2026-05-27 00:08:42 +00:00
Fix compilation errors
Co-authored-by: Kirill Bulatov <kirill@zed.dev>
This commit is contained in:
parent
df6df0c09e
commit
cb79e181f5
2 changed files with 2 additions and 1 deletions
|
|
@ -1738,7 +1738,7 @@ impl AgentPanel {
|
|||
Err(error) => {
|
||||
log::error!("failed to spawn agent panel terminal: {error:#}");
|
||||
workspace
|
||||
.update(cx, |workspace, cx| workspace.show_error(&error, cx))
|
||||
.update(cx, |workspace, cx| workspace.show_error(error, cx))
|
||||
.log_err();
|
||||
this.update(cx, |this, cx| {
|
||||
if this.pending_terminal_spawn == Some(terminal_id) {
|
||||
|
|
|
|||
|
|
@ -82,6 +82,7 @@ use ui::{
|
|||
use util::paths::PathStyle;
|
||||
use util::{ResultExt, TryFutureExt, markdown::MarkdownInlineCode, maybe, rel_path::RelPath};
|
||||
use workspace::SERIALIZATION_THROTTLE_TIME;
|
||||
use workspace::notifications::NotificationId;
|
||||
use workspace::{
|
||||
Workspace,
|
||||
dock::{DockPosition, Panel, PanelEvent},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue