InlineEdit: Respect line number as part of the panel

Change-Id: I245ebd55537e2985e3e8a7c01071643a5f6d9019
This commit is contained in:
David Ostrovsky
2015-01-16 08:21:01 +01:00
parent f6b3c140b1
commit 0aaa5d4a4a

View File

@@ -609,7 +609,7 @@ public class Dispatcher {
codemirror(token, null, id, side, line, false);
} else if ("unified".equals(panel)) {
unified(token, baseId, id);
} else if ("edit".equals(panel)) {
} else if (panel.startsWith("edit")) {
codemirror(token, null, id, side, line, true);
} else {
Gerrit.display(token, new NotFoundScreen());