Bug 1300494 - New console frontend: Fix rep spacing for console. r=Honza

MozReview-Commit-ID: LKikTgd3DgT
This commit is contained in:
Lin Clark 2016-09-20 11:37:01 -07:00
Родитель 87ae40f9cf
Коммит cfca211053
4 изменённых файлов: 4 добавлений и 4 удалений

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

@ -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");
});
});