| Index: third_party/WebKit/Source/devtools/front_end/resources/DOMStorageItemsView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/resources/DOMStorageItemsView.js b/third_party/WebKit/Source/devtools/front_end/resources/DOMStorageItemsView.js
|
| index f4d4009cdc4639d25542c26fb784b6348bc37b94..14dfdd2c7e2bfb2295ac15032c5ef01a964ce8bd 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/resources/DOMStorageItemsView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/resources/DOMStorageItemsView.js
|
| @@ -182,10 +182,10 @@ WebInspector.DOMStorageItemsView.prototype = {
|
|
|
| _dataGridForDOMStorageItems: function(items)
|
| {
|
| - var columns = [
|
| - {id: "key", title: WebInspector.UIString("Key"), editable: true, weight: 50},
|
| - {id: "value", title: WebInspector.UIString("Value"), editable: true, weight: 50}
|
| - ];
|
| + var columns = /** @type {!Array<!WebInspector.DataGrid.ColumnDescriptor>} */ ([
|
| + {id: "key", title: WebInspector.UIString("Key"), sortable: false, editable: true, weight: 50},
|
| + {id: "value", title: WebInspector.UIString("Value"), sortable: false, editable: true, weight: 50}
|
| + ]);
|
|
|
| var nodes = [];
|
|
|
|
|