From 0396fcf4b54da7c5ff09908e23a16e96dea9cda4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E6=99=BA=E8=B6=85?= <1012112796@qq.com> Date: Tue, 5 May 2020 23:16:55 +0800 Subject: [PATCH] Change the style in admin notice content view from
to
(#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> --- templates/admin/notice.tmpl | 2 +- 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 8e56713ec..7d1720bec 100644 --- a/templates/admin/notice.tmpl +++ b/templates/admin/notice.tmpl @@ -77,7 +77,7 @@{{$.i18n.Tr "admin.notices.view_detail_header"}}- +{{template "base/footer" .}} diff --git a/web_src/js/index.js b/web_src/js/index.js index 639f36fab..6ac4a1de5 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; });