| Index: chrome/browser/resources/history/other_devices.js
|
| diff --git a/chrome/browser/resources/history/other_devices.js b/chrome/browser/resources/history/other_devices.js
|
| index f0ebe8005b63ee5711e1c3b007643b62da3c57ac..5a3b21dae52e6845a7b7fd3f05f66e0421d5e0cc 100644
|
| --- a/chrome/browser/resources/history/other_devices.js
|
| +++ b/chrome/browser/resources/history/other_devices.js
|
| @@ -513,9 +513,9 @@ DevicesView.prototype.displayResults_ = function() {
|
| continue;
|
|
|
| var grid = new cr.ui.FocusGrid();
|
| - for (var i = 0; i < rows.length; ++i) {
|
| - DevicesViewFocusRow.decorate(rows[i], devices[i]);
|
| - grid.addRow(rows[i]);
|
| + for (var j = 0; j < rows.length; ++j) {
|
| + DevicesViewFocusRow.decorate(rows[j], devices[i]);
|
| + grid.addRow(rows[j]);
|
| }
|
| this.focusGrids_.push(grid);
|
| }
|
|
|