Merge branch 'stable-2.7'

* stable-2.7:
  Fix: RepoCommandLink's text is wrong
  fix: NoOp score not displayed for open changes

Change-Id: I7402dbf375565b3af32cd2d66a8e885a62a3a317
This commit is contained in:
David Pursehouse 2013-08-29 21:26:51 +09:00
commit bf89067452

View File

@ -86,7 +86,7 @@ public abstract class DownloadCommandLink extends Anchor implements ClickHandler
String projectName;
String ref;
public RepoCommandLink(String project, String ref) {
super(DownloadCommand.REPO_DOWNLOAD, "checkout");
super(DownloadCommand.REPO_DOWNLOAD, "repo download");
this.projectName = project;
this.ref = ref;
}