Index: chrome/browser/resources/settings/passwords_and_forms_page/credit_card_edit_dialog.js |
diff --git a/chrome/browser/resources/settings/passwords_and_forms_page/credit_card_edit_dialog.js b/chrome/browser/resources/settings/passwords_and_forms_page/credit_card_edit_dialog.js |
index c92bc9752cbe0c54d1a6fa4b933d9f428f6ccb0b..9275819048ceb0ff614bbad265b52508d8206264 100644 |
--- a/chrome/browser/resources/settings/passwords_and_forms_page/credit_card_edit_dialog.js |
+++ b/chrome/browser/resources/settings/passwords_and_forms_page/credit_card_edit_dialog.js |
@@ -28,8 +28,19 @@ Polymer({ |
title_: String, |
/** |
+ * The list of months to show in the dropdown. |
+ * @private {!Array<string>} |
+ */ |
+ monthList_: { |
+ type: Array, |
+ value: [ |
+ '01', '02', '03', '04', '05', '06', '07', '09', '10', '11', '12', |
+ ], |
+ }, |
+ |
+ /** |
* The list of years to show in the dropdown. |
- * @type {!Array<string>} |
+ * @private {!Array<string>} |
*/ |
yearList_: Array, |
}, |