summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-05-23 11:44:24 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-05-23 11:44:24 +0300
commit76f3898fbf13bb4a4b7cf910c393177ae19bd25e (patch)
tree86a4809f17d43ba46dbcda35c71970afeb47521e
parentf58dc8e6c95ef9d566402395d12c46bb97759cf2 (diff)
downloadgitlab-ce-76f3898fbf13bb4a4b7cf910c393177ae19bd25e.tar.gz
Fix milestones list pagination style
-rw-r--r--app/views/milestones/index.html.haml8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/milestones/index.html.haml b/app/views/milestones/index.html.haml
index 89892cd23f1..fb7cbc41edf 100644
--- a/app/views/milestones/index.html.haml
+++ b/app/views/milestones/index.html.haml
@@ -21,12 +21,12 @@
= link_to project_milestones_path(@project, f: "all") do
All
.span9
- %div.ui-box
+ .ui-box
%ul.well-list
= render @milestones
- - if @milestones.present?
- %li.bottom= paginate @milestones, theme: "gitlab"
- - else
+ - if @milestones.blank?
%li
%h3.nothing_here_message Nothing to show here
+
+ = paginate @milestones, theme: "gitlab"