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

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

Issue 1907813002: Make the URLs in the password exceptions list clickable. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove-implicit-update.gitbr
Patch Set: feedback Created 4 years, 8 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 69189ac940ed5bd2383c1eea1e4b92b145215de6..5c83ee089427de4fac114cfaf07826308034d6f5 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
@@ -133,7 +133,8 @@
items="[[passwordExceptions]]">
<template>
<div class="list-item two-line">
- <div id="exception" class="start">[[item]]</div>
+ <a id="exception" href="[[item.linkUrl]]" target="_blank"
+ class="start list-link">[[item.exceptionUrl]]</a>
<paper-icon-button id="removeExceptionButton" icon="close"
on-tap="onRemoveExceptionButtonTap_" tabindex$="[[tabIndex]]"
i18n-values="alt:deletePasswordException"></paper-icon-button>

Powered by Google App Engine
This is Rietveld 408576698