| Index: ui/webui/resources/cr_elements/policy/cr_policy_pref_indicator.js
|
| diff --git a/ui/webui/resources/cr_elements/policy/cr_policy_pref_indicator.js b/ui/webui/resources/cr_elements/policy/cr_policy_pref_indicator.js
|
| index 4084ab2c4b913514fd00bdb675f0f4e537c17f81..ec6fb5bd94a6d79d2b1afbeedccf8248f7163027 100644
|
| --- a/ui/webui/resources/cr_elements/policy/cr_policy_pref_indicator.js
|
| +++ b/ui/webui/resources/cr_elements/policy/cr_policy_pref_indicator.js
|
| @@ -35,7 +35,7 @@ Polymer({
|
| indicatorType: {
|
| type: String,
|
| value: CrPolicyIndicatorType.NONE,
|
| - computed: 'getIndicatorType(pref.policySource, pref.policyEnforcement)',
|
| + computed: 'getIndicatorType(pref.controlledBy, pref.enforcement)',
|
| },
|
| },
|
|
|
| @@ -51,7 +51,7 @@ Polymer({
|
| return this.i18n_('controlledSettingRecommendedMatches');
|
| return this.i18n_('controlledSettingRecommendedDiffers');
|
| }
|
| - var name = pref ? pref.policySourceName : controllingUser;
|
| + var name = pref ? pref.controlledByName : controllingUser;
|
| return this.getPolicyIndicatorTooltip(type, name);
|
| }
|
| });
|
|
|