1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Add missed auto merge feed message on dashboard (#33309)

This commit is contained in:
Lunny Xiao
2025-01-26 10:33:05 -08:00
committed by GitHub
parent 9875f9b9b8
commit 3e7ec826d3
2 changed files with 6 additions and 3 deletions

View File

@@ -72,9 +72,9 @@ func (at ActionType) String() string {
case ActionRenameRepo:
return "rename_repo"
case ActionStarRepo:
return "star_repo"
return "star_repo" // will not displayed in feeds.tmpl
case ActionWatchRepo:
return "watch_repo"
return "watch_repo" // will not displayed in feeds.tmpl
case ActionCommitRepo:
return "commit_repo"
case ActionCreateIssue: