| Index: third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js b/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js
|
| index 8c62058d640b367a3f0953535898d39f52fb1c71..edc25c3c497671ecf747d80de5d443f67a1a09a7 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js
|
| @@ -526,7 +526,7 @@ Console.ConsoleViewMessage = class {
|
| var titleElement = createElement('span');
|
| if (includePreview && obj.preview) {
|
| titleElement.classList.add('console-object-preview');
|
| - this._previewFormatter.appendObjectPreview(titleElement, obj.preview);
|
| + this._previewFormatter.appendObjectPreview(titleElement, obj.preview, false /* isEntry */);
|
| } else if (obj.type === 'function') {
|
| Components.ObjectPropertiesSection.formatObjectAsFunction(obj, titleElement, false);
|
| titleElement.classList.add('object-value-function');
|
|
|