diff --git a/crates/git_ui/src/git_panel.rs b/crates/git_ui/src/git_panel.rs index 37ec7efb89..4eddb2a0d3 100644 --- a/crates/git_ui/src/git_panel.rs +++ b/crates/git_ui/src/git_panel.rs @@ -149,7 +149,7 @@ fn git_panel_context_menu( StashAll.boxed_clone(), ) .action_disabled_when(!state.has_stash_items, "Stash Pop", StashPop.boxed_clone()) - .action("View Stash", zed_actions::git::StashEntries.boxed_clone()) + .action("View Stash", zed_actions::git::ViewStash.boxed_clone()) .separator() .action("Open Diff", project_diff::Diff.boxed_clone()) .separator() diff --git a/crates/git_ui/src/stash_picker.rs b/crates/git_ui/src/stash_picker.rs index c7a2919d1d..603f7125df 100644 --- a/crates/git_ui/src/stash_picker.rs +++ b/crates/git_ui/src/stash_picker.rs @@ -33,7 +33,7 @@ pub fn register(workspace: &mut Workspace) { pub fn open( workspace: &mut Workspace, - _: &zed_actions::git::StashEntries, + _: &zed_actions::git::ViewStash, window: &mut Window, cx: &mut Context, ) { diff --git a/crates/zed_actions/src/lib.rs b/crates/zed_actions/src/lib.rs index e0bca2a406..c66fe93f8e 100644 --- a/crates/zed_actions/src/lib.rs +++ b/crates/zed_actions/src/lib.rs @@ -177,7 +177,7 @@ pub mod git { #[action(deprecated_aliases = ["branches::OpenRecent"])] Branch, /// Opens the git stash selector. - StashEntries + ViewStash ] ); }