diff options
author | Unknwon <u@gogs.io> | 2016-07-11 05:28:56 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-07-11 05:28:56 +0800 |
commit | fdcca9292e57dafdf66345a1b9b9c97b7a0b4872 (patch) | |
tree | 9e02a227dd0aad6ee738564696eb009aa659787d /templates/repo/issue/view.tmpl | |
parent | a1f717f65a8b9260a8a354d1ff8886f0e89e74f3 (diff) | |
download | gitea-fdcca9292e57dafdf66345a1b9b9c97b7a0b4872.tar.gz gitea-fdcca9292e57dafdf66345a1b9b9c97b7a0b4872.zip |
#2458 fix emoji been rendered inside raw content area
Diffstat (limited to 'templates/repo/issue/view.tmpl')
-rw-r--r-- | templates/repo/issue/view.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/repo/issue/view.tmpl b/templates/repo/issue/view.tmpl index c289dbcb7a..2260f17399 100644 --- a/templates/repo/issue/view.tmpl +++ b/templates/repo/issue/view.tmpl @@ -16,11 +16,11 @@ {{if .Issue.IsPull}} {{template "repo/issue/view_title" .}} {{template "repo/pulls/tab_menu" .}} - <div class="ui bottom attached tab pull segment active has-emoji" data-tab="request-{{.ID}}"> + <div class="ui bottom attached tab pull segment active" data-tab="request-{{.ID}}"> {{template "repo/issue/view_content" .}} </div> {{else}} - <div class="has-emoji"> + <div> {{template "repo/issue/view_content" .}} </div> {{end}} |