Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Unified Diff: chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html

Issue 2170713002: Use dom-repeat for addresses, credit cards, and exceptions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html
diff --git a/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html b/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html
index 74bcd18d29bd08b6e0ed36e4cdfb3738a9ac89f9..1a2648015a1b86df9697b7f2b8d9686f5166b11d 100644
--- a/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html
+++ b/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html
@@ -105,9 +105,9 @@
</password-edit-dialog>
</template>
<div class="heading">$i18n{passwordExceptionsHeading}</div>
- <iron-list id="passwordExceptionsList" items="[[passwordExceptions]]"
+ <div id="passwordExceptionsList"
class="vertical-list list-section item-list">
- <template>
+ <template is="dom-repeat" items="[[passwordExceptions]]">
<div class="list-item two-line">
<div class="start">
<a id="exception" href="[[item.linkUrl]]" target="_blank"
@@ -120,7 +120,7 @@
</paper-icon-button>
</div>
</template>
- </iron-list>
+ </div>
</template>
<!-- action_link.css is needed for the |managePasswordsLabel| link -->
<link rel="import" type="css" href="chrome://resources/css/action_link.css">

Powered by Google App Engine
This is Rietveld 408576698