diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:14:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:14:29 +0000 |
commit | fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8 (patch) | |
tree | 4c1ccaf5486d4f2009f9a338a98a83e886e29c97 /devtools/client/dom | |
parent | Releasing progress-linux version 124.0.1-1~progress7.99u1. (diff) | |
download | firefox-fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8.tar.xz firefox-fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8.zip |
Merging upstream version 125.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'devtools/client/dom')
-rw-r--r-- | devtools/client/dom/content/dom-decorator.js | 2 | ||||
-rw-r--r-- | devtools/client/dom/content/reducers/grips.js | 2 | ||||
-rw-r--r-- | devtools/client/dom/panel.js | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/devtools/client/dom/content/dom-decorator.js b/devtools/client/dom/content/dom-decorator.js index a711a95d83..625caaf55b 100644 --- a/devtools/client/dom/content/dom-decorator.js +++ b/devtools/client/dom/content/dom-decorator.js @@ -41,7 +41,7 @@ DomDecorator.prototype = { * Return custom React template for specified object. The template * might depend on specified column. */ - getValueRep(value, colId) {}, + getValueRep() {}, }; // Exports from this module diff --git a/devtools/client/dom/content/reducers/grips.js b/devtools/client/dom/content/reducers/grips.js index 1413baa1ce..f5871d59dd 100644 --- a/devtools/client/dom/content/reducers/grips.js +++ b/devtools/client/dom/content/reducers/grips.js @@ -36,7 +36,7 @@ function grips(state = getInitialState(), action) { /** * Handle requestProperties action */ -function onRequestProperties(state, action) { +function onRequestProperties(state) { return state; } diff --git a/devtools/client/dom/panel.js b/devtools/client/dom/panel.js index 98e821cbd8..427ffe58f3 100644 --- a/devtools/client/dom/panel.js +++ b/devtools/client/dom/panel.js @@ -147,7 +147,7 @@ DomPanel.prototype = { this.refresh(); }, - _onTargetSelected({ targetFront }) { + _onTargetSelected() { this.forceRefresh(); }, |