зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1300494 - New console frontend: Fix rep spacing for console. r=Honza
MozReview-Commit-ID: LKikTgd3DgT
This commit is contained in:
Родитель
87ae40f9cf
Коммит
cfca211053
|
@ -34,7 +34,7 @@ define(function (require, exports, module) {
|
|||
if (this.props.objectLink) {
|
||||
return this.props.objectLink({
|
||||
object: object
|
||||
}, object.class + " ");
|
||||
}, object.class);
|
||||
}
|
||||
return object.class || "Object";
|
||||
},
|
||||
|
|
|
@ -30,7 +30,7 @@ define(function (require, exports, module) {
|
|||
if (this.props.objectLink) {
|
||||
return this.props.objectLink({
|
||||
object: object
|
||||
}, object.class + " ");
|
||||
}, object.class);
|
||||
}
|
||||
return "Object";
|
||||
},
|
||||
|
|
|
@ -32,7 +32,7 @@ define(function (require, exports, module) {
|
|||
return DOM.span({className: "objectBox"},
|
||||
this.props.objectLink({
|
||||
object: grip
|
||||
}, title + " ")
|
||||
}, title)
|
||||
);
|
||||
}
|
||||
return title;
|
||||
|
|
|
@ -20,7 +20,7 @@ describe("EvaluationResult component:", () => {
|
|||
const rendered = renderComponent(EvaluationResult, props);
|
||||
|
||||
const messageBody = getMessageBody(rendered);
|
||||
expect(messageBody.textContent).toBe("Date1970-01-01T00:00:00.000Z");
|
||||
expect(messageBody.textContent).toBe("Date 1970-01-01T00:00:00.000Z");
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче