diff options
author | 赵智超 <1012112796@qq.com> | 2020-05-05 23:16:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-05 10:16:55 -0500 |
commit | 0396fcf4b54da7c5ff09908e23a16e96dea9cda4 (patch) | |
tree | 3e1e181b53e815e41071e02805936a0ac677eda8 | |
parent | a104864da251dd9a4ccdc3c8b6a558cab04705b5 (diff) | |
download | gitea-0396fcf4b54da7c5ff09908e23a16e96dea9cda4.tar.gz gitea-0396fcf4b54da7c5ff09908e23a16e96dea9cda4.zip |
Change the style in admin notice content view from <p> to <pre> (#11301)
That's because many notic have more than one lines. So I think
pre is more better to used in here than p
Signed-off-by: a1012112796 <1012112796@qq.com>
-rw-r--r-- | templates/admin/notice.tmpl | 2 | ||||
-rw-r--r-- | web_src/js/index.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/admin/notice.tmpl b/templates/admin/notice.tmpl index 8e56713ece..7d1720becd 100644 --- a/templates/admin/notice.tmpl +++ b/templates/admin/notice.tmpl @@ -77,7 +77,7 @@ <i class="close icon"></i> <div class="header">{{$.i18n.Tr "admin.notices.view_detail_header"}}</div> <div class="content"> - <p></p> + <pre></pre> </div> </div> {{template "base/footer" .}} diff --git a/web_src/js/index.js b/web_src/js/index.js index 639f36fab7..6ac4a1de5d 100644 --- a/web_src/js/index.js +++ b/web_src/js/index.js @@ -2019,7 +2019,7 @@ function initAdmin() { // Attach view detail modals $('.view-detail').on('click', function () { - $detailModal.find('.content p').text($(this).data('content')); + $detailModal.find('.content pre').text($(this).data('content')); $detailModal.modal('show'); return false; }); |