| Index: Source/devtools/front_end/resources/DatabaseTableView.js
|
| diff --git a/Source/devtools/front_end/resources/DatabaseTableView.js b/Source/devtools/front_end/resources/DatabaseTableView.js
|
| index cb2f77c50cb9344028c3efebb0b6a7d2c768b8e1..7fb79d84ed7533eaa61a6f13625258693e6f3168 100644
|
| --- a/Source/devtools/front_end/resources/DatabaseTableView.js
|
| +++ b/Source/devtools/front_end/resources/DatabaseTableView.js
|
| @@ -71,7 +71,7 @@ WebInspector.DatabaseTableView.prototype = {
|
| this.detachChildViews();
|
| this.element.removeChildren();
|
|
|
| - var dataGrid = WebInspector.DataGrid.createSortableDataGrid(columnNames, values);
|
| + var dataGrid = WebInspector.SortableDataGrid.create(columnNames, values);
|
| if (!dataGrid) {
|
| this._emptyView = new WebInspector.EmptyView(WebInspector.UIString("The ā%sā\ntable is empty.", this.tableName));
|
| this._emptyView.show(this.element);
|
|
|