Skip to content

Commit

Permalink
Do not show delete button when time tracker is disabled (go-gitea#29257
Browse files Browse the repository at this point in the history
…) (go-gitea#29279)

Backport go-gitea#29257 
Fix go-gitea#29233

The delete button of time logs won't be shown when the time tracker is
disabled.
 

![image](https://github.com/go-gitea/gitea/assets/15528715/5cc4e0c9-d2f9-4b8f-a2f5-fe202b94c191)

Co-authored-by: KN4CK3R <admin@oldschoolhack.me>
  • Loading branch information
Zettat123 and KN4CK3R authored Feb 20, 2024
1 parent 2762921 commit e940443
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{if .comment.Time}} {{/* compatibility with time comments made before v1.14 */}}
{{if and .comment.Time (.ctxData.Repository.IsTimetrackerEnabled ctx)}} {{/* compatibility with time comments made before v1.14 */}}
{{if (not .comment.Time.Deleted)}}
{{if (or .ctxData.IsAdmin (and .ctxData.IsSigned (eq .ctxData.SignedUserID .comment.PosterID)))}}
<span class="gt-float-right">
Expand Down

0 comments on commit e940443

Please sign in to comment.