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..78a630e06454569133a09c3fab60196d47f2fa96 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' : ''; |
Dan Beam
2014/09/11 02:53:09
nit: indent + 4\s more
Vitaly Pavlenko
2014/09/11 04:16:25
This way?
|
} else { |
- this.controlledBy = null; |
+ this.controlledBy = ''; |
} |
}, |