add class for message case for e2e tests
This commit is contained in:
parent
22874f62ab
commit
8e750e18d7
1 changed files with 3 additions and 2 deletions
|
@ -227,7 +227,8 @@ module.exports = React.createClass({
|
||||||
let secondaryActionHandler;
|
let secondaryActionHandler;
|
||||||
let secondaryActionLabel;
|
let secondaryActionLabel;
|
||||||
|
|
||||||
switch (this._getMessageCase()) {
|
const messageCase = this._getMessageCase();
|
||||||
|
switch (messageCase) {
|
||||||
case MessageCase.Joining: {
|
case MessageCase.Joining: {
|
||||||
title = _t("Joining room …");
|
title = _t("Joining room …");
|
||||||
showSpinner = true;
|
showSpinner = true;
|
||||||
|
@ -418,7 +419,7 @@ module.exports = React.createClass({
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
const classes = classNames("mx_RoomPreviewBar", "dark-panel", {
|
const classes = classNames("mx_RoomPreviewBar", "dark-panel", `mx_RoomPreviewBar_${messageCase}`, {
|
||||||
"mx_RoomPreviewBar_panel": this.props.canPreview,
|
"mx_RoomPreviewBar_panel": this.props.canPreview,
|
||||||
"mx_RoomPreviewBar_dialog": !this.props.canPreview,
|
"mx_RoomPreviewBar_dialog": !this.props.canPreview,
|
||||||
"mx_RoomPreviewBar_dark": darkStyle,
|
"mx_RoomPreviewBar_dark": darkStyle,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue