Index: chrome/browser/resources/shared/js/cr/ui/list_selection_model.js |
diff --git a/chrome/browser/resources/shared/js/cr/ui/list_selection_model.js b/chrome/browser/resources/shared/js/cr/ui/list_selection_model.js |
index 17b1c99b9d06f95a66aeab7dbc96324ea57db279..98cd45f4644c80beb3a9547ef23b29bab698a1f3 100644 |
--- a/chrome/browser/resources/shared/js/cr/ui/list_selection_model.js |
+++ b/chrome/browser/resources/shared/js/cr/ui/list_selection_model.js |
@@ -227,7 +227,7 @@ cr.define('cr.ui', function() { |
var e = new Event('change'); |
e.changes = indexes.map(function(index) { |
return { |
- index: index, |
+ index: Number(index), |
selected: this.changedIndexes_[index] |
}; |
}, this); |