Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit aa1f468

Browse files
committed
fix: room id sticked with event id
1 parent 760b11f commit aa1f468

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

res/css/structures/_ViewSource.scss

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,6 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17-
.mx_ViewSource_label_left {
18-
float: left;
19-
}
20-
21-
.mx_ViewSource_label_right {
22-
float: right;
23-
}
24-
2517
.mx_ViewSource_separator {
2618
clear: both;
2719
border-bottom: 1px solid #e5e5e5;

src/components/structures/ViewSource.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,8 @@ export default class ViewSource extends React.Component {
176176
return (
177177
<BaseDialog className="mx_ViewSource" onFinished={this.props.onFinished} title={_t("View Source")}>
178178
<div>
179-
<div className="mx_ViewSource_label_left">Room ID: {roomId}</div>
180-
<div className="mx_ViewSource_label_left">Event ID: {eventId}</div>
179+
<div>Room ID: {roomId}</div>
180+
<div>Event ID: {eventId}</div>
181181
<div className="mx_ViewSource_separator" />
182182
{isEditing ? this.editSourceContent() : this.viewSourceContent()}
183183
</div>

0 commit comments

Comments
 (0)