| Index: third_party/WebKit/Source/devtools/front_end/ui/FilterBar.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/FilterBar.js b/third_party/WebKit/Source/devtools/front_end/ui/FilterBar.js
|
| index 281deb6fa988f1abafb64348030df4321d04ce34..455cc114c9d5020e258a938c6ca95a2782547e4c 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/FilterBar.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/FilterBar.js
|
| @@ -348,7 +348,7 @@ WebInspector.TextFilterUI.prototype = {
|
| else
|
| this._suggestionBuilder.applySuggestion(this._filterInputElement, suggestions[0], true);
|
| var anchorBox = this._filterInputElement.boxInWindow().relativeTo(new AnchorBox(-3, 0));
|
| - this._suggestBox.updateSuggestions(anchorBox, suggestions, 0, true, "");
|
| + this._suggestBox.updateSuggestions(anchorBox, suggestions.map(item => ({title: item})), 0, true, "");
|
| } else {
|
| this._suggestBox.hide();
|
| }
|
|
|