mirror of
https://github.com/vector-im/element-web.git
synced 2025-10-01 02:21:03 +02:00
Use objectShallowClone
This commit is contained in:
parent
452fbb076b
commit
a258a3874b
@ -223,7 +223,7 @@ export default class RoomList extends React.PureComponent<IProps, IState> {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// shallow-copy from the template as we need to make modifications to it
|
// shallow-copy from the template as we need to make modifications to it
|
||||||
this.tagAesthetics = Object.assign({}, TAG_AESTHETICS);
|
this.tagAesthetics = objectShallowClone(TAG_AESTHETICS);
|
||||||
this.updateDmAddRoomAction();
|
this.updateDmAddRoomAction();
|
||||||
|
|
||||||
this.dispatcherRef = defaultDispatcher.register(this.onAction);
|
this.dispatcherRef = defaultDispatcher.register(this.onAction);
|
||||||
@ -242,7 +242,7 @@ export default class RoomList extends React.PureComponent<IProps, IState> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private updateDmAddRoomAction() {
|
private updateDmAddRoomAction() {
|
||||||
const dmTagAesthetics = Object.assign({}, TAG_AESTHETICS[DefaultTagID.DM]);
|
const dmTagAesthetics = objectShallowClone(TAG_AESTHETICS[DefaultTagID.DM]);
|
||||||
if (CallHandler.sharedInstance().getSupportsPstnProtocol()) {
|
if (CallHandler.sharedInstance().getSupportsPstnProtocol()) {
|
||||||
dmTagAesthetics.addRoomContextMenu = dmAddRoomContextMenu;
|
dmTagAesthetics.addRoomContextMenu = dmAddRoomContextMenu;
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user