| Index: ui/login/account_picker/user_pod_row.js
|
| diff --git a/ui/login/account_picker/user_pod_row.js b/ui/login/account_picker/user_pod_row.js
|
| index 6115625876b80feb04eddd91c5c6add47165e425..32811a6dfa53af36ab1c16139e54c2e68d431867 100644
|
| --- a/ui/login/account_picker/user_pod_row.js
|
| +++ b/ui/login/account_picker/user_pod_row.js
|
| @@ -1942,6 +1942,14 @@ cr.define('login', function() {
|
| },
|
|
|
| /** @override */
|
| + get mainInput() {
|
| + if (this.user.needsSignin)
|
| + return this.passwordElement;
|
| + else
|
| + return this.nameElement;
|
| + },
|
| +
|
| + /** @override */
|
| update: function() {
|
| this.imageElement.src = this.user.userImage;
|
| this.nameElement.textContent = this.user.displayName;
|
|
|