| Index: ui/webui/resources/cr_elements/policy/cr_policy_network_indicator.js
|
| diff --git a/ui/webui/resources/cr_elements/policy/cr_policy_network_indicator.js b/ui/webui/resources/cr_elements/policy/cr_policy_network_indicator.js
|
| index ac1e7792153cbd40a49ec97a812c4fff4cbc613b..494d6f468d7ccd7be529569f3cb1d7df7cab8d12 100644
|
| --- a/ui/webui/resources/cr_elements/policy/cr_policy_network_indicator.js
|
| +++ b/ui/webui/resources/cr_elements/policy/cr_policy_network_indicator.js
|
| @@ -51,13 +51,14 @@ Polymer({
|
| // We ignore UserEditable unless there is a UserPolicy.
|
| this.indicatorType = CrPolicyIndicatorType.RECOMMENDED;
|
| this.recommended =
|
| - /** @type {CrOnc.NetworkPropertyType} */(property.UserPolicy);
|
| - } else if (property.DeviceEditable === true &&
|
| - property.hasOwnProperty('DevicePolicy')) {
|
| + /** @type {CrOnc.NetworkPropertyType} */ (property.UserPolicy);
|
| + } else if (
|
| + property.DeviceEditable === true &&
|
| + property.hasOwnProperty('DevicePolicy')) {
|
| // We ignore DeviceEditable unless there is a DevicePolicy.
|
| this.indicatorType = CrPolicyIndicatorType.RECOMMENDED;
|
| this.recommended =
|
| - /** @type {CrOnc.NetworkPropertyType} */(property.DevicePolicy);
|
| + /** @type {CrOnc.NetworkPropertyType} */ (property.DevicePolicy);
|
| } else if (effective == 'UserPolicy') {
|
| this.indicatorType = CrPolicyIndicatorType.USER_POLICY;
|
| } else if (effective == 'DevicePolicy') {
|
|
|