Closed
Bug 1699146
Opened 4 years ago
Closed 4 years ago
Fix typo in error message created by Front base class
Categories
(DevTools :: General, task, P5)
DevTools
General
Tracking
(firefox88 fixed)
RESOLVED
FIXED
88 Branch
Tracking | Status | |
---|---|---|
firefox88 | --- | fixed |
People
(Reporter: jdescottes, Assigned: henryvincent33)
Details
(Keywords: good-first-bug)
Attachments
(1 file)
if (front.parentFront && front.parentFront !== this) {
throw new Error(
`${this.actorID} (${this.typeName}) can't manage ${front.actorID}
(${front.typeName}) since it has a different parentFront ${
front.parentFront
? front.parentFront.actordID +
"(" +
front.parentFront.typeName +
")"
: "<no parentFront>"
}`
);
}
Here front.parentFront.actordID
should be front.parentFront.actorID
(actor"d"ID -> actorID).
Minor issue as it only leads to generate incorrect error messages.
Setting as good first bug
Assignee | ||
Comment 1•4 years ago
|
||
Updated•4 years ago
|
Assignee: nobody → henryvincent33
Status: NEW → ASSIGNED
Pushed by apoirot@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/09906b748cbc
Fix typo in error message created by Front base class r=ochameau First bug fix. Fixed typo, and then the linter wanted the code slightly reformatted.
Comment 3•4 years ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 4 years ago
status-firefox88:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → 88 Branch
Reporter | ||
Comment 4•4 years ago
|
||
Henry, thanks for fixing this so quickly!
Assignee | ||
Comment 5•4 years ago
|
||
(In reply to Julian Descottes [:jdescottes] from comment #4)
Henry, thanks for fixing this so quickly!
No problem! Thanks for giving me something to do on a slow evening!
You need to log in
before you can comment on or make changes to this bug.
Description
•