| Index: chrome/browser/resources/settings/internet_page/network_property_list.js
|
| diff --git a/chrome/browser/resources/settings/internet_page/network_property_list.js b/chrome/browser/resources/settings/internet_page/network_property_list.js
|
| index 006feca4d5ade7a673f982693481b38cd7d85b92..f333386cb780012619642ddb4b3501f62381c6e6 100644
|
| --- a/chrome/browser/resources/settings/internet_page/network_property_list.js
|
| +++ b/chrome/browser/resources/settings/internet_page/network_property_list.js
|
| @@ -109,12 +109,12 @@ Polymer({
|
| * @private
|
| */
|
| computeFilter_: function(prefix, propertyDict, editFieldTypes) {
|
| - return function(key) {
|
| + return key => {
|
| if (editFieldTypes.hasOwnProperty(key))
|
| return true;
|
| var value = this.getPropertyValue_(key, prefix, propertyDict);
|
| return value !== undefined && value !== '';
|
| - }.bind(this);
|
| + };
|
| },
|
|
|
| /**
|
|
|