diff options
author | Cirno the Strongest <1447794+CirnoT@users.noreply.github.com> | 2021-01-04 17:51:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-04 18:51:00 +0200 |
commit | 8db0372a45082c8827bdee1b449f618b393c026d (patch) | |
tree | b0080e251917f21a6cba63ecb6cf90ea5ed06e4d /templates/user/dashboard/feeds.tmpl | |
parent | 3d38ecb1fc4ecb1abcfce960d6630fab25497914 (diff) | |
download | gitea-8db0372a45082c8827bdee1b449f618b393c026d.tar.gz gitea-8db0372a45082c8827bdee1b449f618b393c026d.zip |
Handle NotifyCreateRef as create branch in feeds (#14245)
Co-authored-by: Lauris BH <lauris@nix.lv>
Diffstat (limited to 'templates/user/dashboard/feeds.tmpl')
-rw-r--r-- | templates/user/dashboard/feeds.tmpl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/templates/user/dashboard/feeds.tmpl b/templates/user/dashboard/feeds.tmpl index ead8e76f31..744e028bc2 100644 --- a/templates/user/dashboard/feeds.tmpl +++ b/templates/user/dashboard/feeds.tmpl @@ -18,7 +18,11 @@ {{$.i18n.Tr "action.rename_repo" .GetContent .GetRepoLink .ShortRepoPath | Str2html}} {{else if eq .GetOpType 5}} {{ $branchLink := .GetBranch | EscapePound | Escape}} - {{$.i18n.Tr "action.commit_repo" .GetRepoLink $branchLink (Escape .GetBranch) .ShortRepoPath | Str2html}} + {{if .Content}} + {{$.i18n.Tr "action.commit_repo" .GetRepoLink $branchLink (Escape .GetBranch) .ShortRepoPath | Str2html}} + {{else}} + {{$.i18n.Tr "action.create_branch" .GetRepoLink $branchLink (Escape .GetBranch) .ShortRepoPath | Str2html}} + {{end}} {{else if eq .GetOpType 6}} {{ $index := index .GetIssueInfos 0}} {{$.i18n.Tr "action.create_issue" .GetRepoLink $index .ShortRepoPath | Str2html}} |