Change action name

This commit is contained in:
Alvaro Parker 2025-08-18 09:59:18 -04:00
parent 50f721ebd4
commit ec4c2f5fd0
No known key found for this signature in database
3 changed files with 3 additions and 3 deletions

View file

@ -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()

View file

@ -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<Workspace>,
) {

View file

@ -177,7 +177,7 @@ pub mod git {
#[action(deprecated_aliases = ["branches::OpenRecent"])]
Branch,
/// Opens the git stash selector.
StashEntries
ViewStash
]
);
}