Fix owner column to link to same status

If a change search result is displaying merged changes, clicking
on the owner name should query for merged changes by the owner.

Bug: issue 1596
Change-Id: Ib103f8d15d66273ca034e05ef71721dbba3ab723
This commit is contained in:
Shawn O. Pearce
2012-10-25 10:54:34 -07:00
committed by Gerrit Code Review
parent f360d97a6f
commit b8adb7f36f
2 changed files with 13 additions and 8 deletions

View File

@@ -213,7 +213,7 @@ public class ChangeTable2 extends NavigationTable<ChangeInfo> {
}
table.setWidget(row, C_OWNER, new InlineHyperlink(owner,
PageLinks.toAccountQuery(owner)));
PageLinks.toAccountQuery(owner, c.status())));
table.setWidget(
row, C_PROJECT, new ProjectLink(c.project_name_key(), c.status()));