diff options
author | Go MAEDA <maeda@farend.jp> | 2023-03-22 04:02:14 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2023-03-22 04:02:14 +0000 |
commit | cb1c2bc1e36caa914e259bfe42533eb978cb010a (patch) | |
tree | 073ac9103d079adfeeeb9c2b815b569471d0ae4a | |
parent | 5198dd54b7684dac2bd3379d9a5779c018aae323 (diff) | |
download | redmine-cb1c2bc1e36caa914e259bfe42533eb978cb010a.tar.gz redmine-cb1c2bc1e36caa914e259bfe42533eb978cb010a.zip |
Do not apply table-layout:fixed in potentially wide tables of detailed issue reports (#38360).
Patch by Holger Just.
git-svn-id: https://svn.redmine.org/redmine/trunk@22142 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/reports/_details.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/reports/_details.html.erb b/app/views/reports/_details.html.erb index 2db6ce014..0bfb0f8f2 100644 --- a/app/views/reports/_details.html.erb +++ b/app/views/reports/_details.html.erb @@ -1,7 +1,7 @@ <% if @statuses.empty? or rows.empty? %> <p><i><%=l(:label_no_data)%></i></p> <% else %> -<table class="list issue-report"> +<table class="list issue-report-detailed"> <thead><tr> <th></th> <% for status in @statuses %> |