| 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 ec5ce28dcb23541b383752ceb9d778be35f1678d..96f6e24e554d710e4892a14b662a539a43d9e75f 100644
|
| --- a/ui/login/account_picker/user_pod_row.js
|
| +++ b/ui/login/account_picker/user_pod_row.js
|
| @@ -1033,8 +1033,9 @@ cr.define('login', function() {
|
| },
|
|
|
| customizeUserPodPerUserType: function() {
|
| - if ((this.user_.supervisedUser || this.user_.childUser)
|
| - && !this.user_.isDesktopUser) {
|
| + if (this.user_.isChildUser && !this.user_.isDesktopUser) {
|
| + this.setUserPodIconType('child');
|
| + } else if (this.user_.isSupervisedUser && !this.user_.isDesktopUser) {
|
| this.setUserPodIconType('supervised');
|
| } else if (this.multiProfilesPolicyApplied) {
|
| // Mark user pod as not focusable which in addition to the grayed out
|
|
|