##// END OF EJS Templates
pullrequests: just show first line of description as hint
Mads Kiilerich -
r3604:ceb6d57d beta
parent child Browse files
Show More
@@ -181,7 +181,7 b' class PullrequestsController(BaseRepoCon'
181 firstname=repo.user.firstname,
181 firstname=repo.user.firstname,
182 lastname=repo.user.lastname,
182 lastname=repo.user.lastname,
183 gravatar_link=h.gravatar_url(repo.user.email, 14)),
183 gravatar_link=h.gravatar_url(repo.user.email, 14)),
184 'description': repo.description,
184 'description': repo.description.split('\n', 1)[0],
185 'revs': h.select('other_ref', selected_other_ref, other_refs, class_='refs')
185 'revs': h.select('other_ref', selected_other_ref, other_refs, class_='refs')
186 }
186 }
187
187
General Comments 0
You need to be logged in to leave comments. Login now