diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-11-04 18:21:08 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-11-04 18:21:08 +0000 |
commit | 8c6c38a006ee9273b06e6931898a206661f625fe (patch) | |
tree | 3a0242bd0eb0f3dedf08f9384412b33443f63b84 | |
parent | 55040b0e419e34da0464bfc224cb22a9bdeae3a6 (diff) | |
download | redmine-8c6c38a006ee9273b06e6931898a206661f625fe.tar.gz redmine-8c6c38a006ee9273b06e6931898a206661f625fe.zip |
Fixed that there's no space after lists in project description (#2573).
git-svn-id: http://svn.redmine.org/redmine/trunk@13554 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/welcome/index.html.erb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/views/welcome/index.html.erb b/app/views/welcome/index.html.erb index 064066ad7..2d4fdfc05 100644 --- a/app/views/welcome/index.html.erb +++ b/app/views/welcome/index.html.erb @@ -21,7 +21,9 @@ <% @project = project %> <li> <%= link_to_project project %> (<%= format_time(project.created_on) %>) - <%= textilizable project.short_description, :project => project %> + <div class="wiki"> + <%= textilizable project.short_description, :project => project %> + </div> </li> <% end %> <% @project = nil %> |