Request all commits in the change detail
Requesting only the current commit in the change detail serves no
commit if the current revision is not visible. Request commits for all
revisions so that the UI can show the latest visible revision. This
comes with the cost of additional server load in the change detail API.
Bug: Issue 6921
Change-Id: I81a8698f0ee9146bf530a41a0b15e5450e48f025
diff --git a/polygerrit-ui/app/elements/shared/gr-rest-api-interface/gr-rest-api-interface.js b/polygerrit-ui/app/elements/shared/gr-rest-api-interface/gr-rest-api-interface.js
index 512c055..d618c17 100644
--- a/polygerrit-ui/app/elements/shared/gr-rest-api-interface/gr-rest-api-interface.js
+++ b/polygerrit-ui/app/elements/shared/gr-rest-api-interface/gr-rest-api-interface.js
@@ -457,10 +457,10 @@
getChangeDetail: function(changeNum, opt_errFn, opt_cancelCondition) {
var options = this._listChangesOptionsToHex(
+ ListChangesOption.ALL_COMMITS,
ListChangesOption.ALL_REVISIONS,
ListChangesOption.CHANGE_ACTIONS,
ListChangesOption.CURRENT_ACTIONS,
- ListChangesOption.CURRENT_COMMIT,
ListChangesOption.DOWNLOAD_COMMANDS,
ListChangesOption.SUBMITTABLE,
ListChangesOption.WEB_LINKS