Commit 8674e1c22704e89ea030c9e38c296cae735610ee

Authored by Dmitriy Zaporozhets
1 parent a5933099

Group has multiple owners so no sense to show one at dashboard list

app/assets/stylesheets/sections/dashboard.scss
... ... @@ -85,12 +85,18 @@
85 85 color: #666;
86 86 }
87 87  
88   - .last-activity, .owner-info {
  88 + .last-activity {
89 89 color: #AAA;
90 90 display: block;
91 91 margin-top: 5px;
92   - .date, .owner {
  92 + .date {
93 93 color: #777;
94 94 }
95 95 }
96 96 }
  97 +
  98 +.group-row {
  99 + .arrow {
  100 + padding: 2px 5px;
  101 + }
  102 +}
... ...
app/views/dashboard/_groups.html.haml
... ... @@ -14,9 +14,6 @@
14 14 = truncate(group.name, length: 35)
15 15 %span.arrow
16 16 %i.icon-angle-right
17   - %span.owner-info
18   - %span Owner:
19   - %span.owner= group.owner_name
20 17 - if groups.blank?
21 18 %li
22 19 %h3.nothing_here_message You have no groups yet.
... ...