⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 245486 in webkit


Ignore:
Timestamp:
May 17, 2019, 4:11:02 PM (7 years ago)
Author:
Ross Kirsling
Message:

REGRESSION(r244350): Web Inspector: Storage tab data grids aren't editable.
https://bugs.webkit.org/show_bug.cgi?id=198003

Reviewed by Devin Rousso.

  • UserInterface/Views/DOMStorageContentView.js:

(WI.DOMStorageContentView):
Fix typo.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r245484 r245486  
     12019-05-17  Ross Kirsling  <ross.kirsling@sony.com>
     2
     3        REGRESSION(r244350): Web Inspector: Storage tab data grids aren't editable.
     4        https://bugs.webkit.org/show_bug.cgi?id=198003
     5
     6        Reviewed by Devin Rousso.
     7
     8        * UserInterface/Views/DOMStorageContentView.js:
     9        (WI.DOMStorageContentView):
     10        Fix typo.
     11
    1122019-05-17  Jamal Nasser  <jamaln@mail.com>
    213
  • trunk/Source/WebInspectorUI/UserInterface/Views/DOMStorageContentView.js

    r244350 r245486  
    4343
    4444        this._dataGrid = new WI.DataGrid(columns, {
    45             editingCallback: this._editingCallback.bind(this),
     45            editCallback: this._editingCallback.bind(this),
    4646            copyCallback: this._dataGridCopy.bind(this),
    4747            deleteCallback: this._deleteCallback.bind(this),
Note: See TracChangeset for help on using the changeset viewer.