Bug 1699146 - 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.

Differential Revision: https://phabricator.services.mozilla.com/D108881
This commit is contained in:
Henry Vincent 2021-03-17 23:45:49 +00:00
Родитель 210310640d
Коммит cc89c462df
1 изменённых файлов: 1 добавлений и 4 удалений

Просмотреть файл

@ -130,10 +130,7 @@ class Front extends Pool {
`${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 +
")"
? front.parentFront.actorID + "(" + front.parentFront.typeName + ")"
: "<no parentFront>"
}`
);