@@ -112,7 +112,7 @@ func (self *StashController) handleStashApply(stashEntry *models.StashEntry) err
112112 Title : self .c .Tr .StashApply ,
113113 Prompt : self .c .Tr .SureApplyStashEntry ,
114114 HandleConfirm : func () error {
115- self .c .LogAction (self .c .Tr .Actions .Stash )
115+ self .c .LogAction (self .c .Tr .Actions .ApplyStash )
116116 err := self .c .Git ().Stash .Apply (stashEntry .Index )
117117 self .postStashRefresh ()
118118 if err != nil {
@@ -128,7 +128,7 @@ func (self *StashController) handleStashApply(stashEntry *models.StashEntry) err
128128
129129func (self * StashController ) handleStashPop (stashEntry * models.StashEntry ) error {
130130 pop := func () error {
131- self .c .LogAction (self .c .Tr .Actions .Stash )
131+ self .c .LogAction (self .c .Tr .Actions .PopStash )
132132 err := self .c .Git ().Stash .Pop (stashEntry .Index )
133133 self .postStashRefresh ()
134134 if err != nil {
@@ -160,7 +160,7 @@ func (self *StashController) handleStashDrop(stashEntries []*models.StashEntry)
160160 Title : self .c .Tr .StashDrop ,
161161 Prompt : self .c .Tr .SureDropStashEntry ,
162162 HandleConfirm : func () error {
163- self .c .LogAction (self .c .Tr .Actions .Stash )
163+ self .c .LogAction (self .c .Tr .Actions .DropStash )
164164 for i := len (stashEntries ) - 1 ; i >= 0 ; i -- {
165165 err := self .c .Git ().Stash .Drop (stashEntries [i ].Index )
166166 self .c .Refresh (types.RefreshOptions {Scope : []types.RefreshableView {types .STASH }})
0 commit comments