| Index: chrome/browser/resources/options/controlled_setting.js
|
| diff --git a/chrome/browser/resources/options/controlled_setting.js b/chrome/browser/resources/options/controlled_setting.js
|
| index df428faea98fc5c99c450b330199696aa81e60be..09460c2559fa3635c35fbc6c77a7ae08aaef696b 100644
|
| --- a/chrome/browser/resources/options/controlled_setting.js
|
| +++ b/chrome/browser/resources/options/controlled_setting.js
|
| @@ -67,14 +67,14 @@ cr.define('options', function() {
|
| this.extensionName = event.value.extension.name;
|
| }
|
| } else {
|
| - this.controlledBy = null;
|
| + this.controlledBy = '';
|
| }
|
| } else if (event.value.recommendedValue != undefined) {
|
| this.controlledBy =
|
| !this.value || String(event.value.recommendedValue) == this.value ?
|
| - 'hasRecommendation' : null;
|
| + 'hasRecommendation' : '';
|
| } else {
|
| - this.controlledBy = null;
|
| + this.controlledBy = '';
|
| }
|
| },
|
|
|
|
|