diff options
author | guillep2k <18600385+guillep2k@users.noreply.github.com> | 2020-02-06 15:35:53 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-06 20:35:53 +0200 |
commit | 08c9160e71f189223785890279405457ea2e47a7 (patch) | |
tree | 53c3393672b85d11be99b0f1a182ac3938f91009 /templates/repo | |
parent | 727fc42db7d992566deab6e3acbf6ffe4b890dea (diff) | |
download | gitea-08c9160e71f189223785890279405457ea2e47a7.tar.gz gitea-08c9160e71f189223785890279405457ea2e47a7.zip |
Allow emoji on review head comments (#10159)
Co-authored-by: techknowlogick <matti@mdranta.net>
Diffstat (limited to 'templates/repo')
-rw-r--r-- | templates/repo/issue/view_content/comments.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/issue/view_content/comments.tmpl b/templates/repo/issue/view_content/comments.tmpl index 087a3c888c..9c99f44ba8 100644 --- a/templates/repo/issue/view_content/comments.tmpl +++ b/templates/repo/issue/view_content/comments.tmpl @@ -345,7 +345,7 @@ {{if .Content}} <div class="detail"> <span class="octicon octicon-quote"></span> - <span class="text grey">{{.Content}}</span> + <span class="text grey has-emoji">{{.Content}}</span> </div> {{end}} {{ range $filename, $lines := .Review.CodeComments}} |