summaryrefslogtreecommitdiffstats
path: root/devtools/client/application/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/application/src/components')
-rw-r--r--devtools/client/application/src/components/manifest/ManifestIssue.js2
-rw-r--r--devtools/client/application/src/components/service-workers/Worker.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/devtools/client/application/src/components/manifest/ManifestIssue.js b/devtools/client/application/src/components/manifest/ManifestIssue.js
index 6a9680d604..0ec25734b0 100644
--- a/devtools/client/application/src/components/manifest/ManifestIssue.js
+++ b/devtools/client/application/src/components/manifest/ManifestIssue.js
@@ -38,7 +38,7 @@ class ManifestIssue extends PureComponent {
switch (level) {
case MANIFEST_ISSUE_LEVELS.WARNING:
return {
- src: "chrome://devtools/skin/images/alert-small.svg",
+ src: "resource://devtools-shared-images/alert-small.svg",
localizationId: "icon-warning",
};
case MANIFEST_ISSUE_LEVELS.ERROR:
diff --git a/devtools/client/application/src/components/service-workers/Worker.js b/devtools/client/application/src/components/service-workers/Worker.js
index bc95e084a9..51cb45c1a6 100644
--- a/devtools/client/application/src/components/service-workers/Worker.js
+++ b/devtools/client/application/src/components/service-workers/Worker.js
@@ -118,7 +118,7 @@ class Worker extends PureComponent {
return this.props.worker.stateText;
}
- getClassNameForStatus(baseClass) {
+ getClassNameForStatus() {
const { state } = this.props.worker;
switch (state) {