mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-25 08:21:41 +02:00
Misc fixes to StatusMessageContextMenu
"waiting" is not a property, and unmount had a typo
This commit is contained in:
parent
4a1b723ab5
commit
604f8f8b6b
@ -25,8 +25,6 @@ export default class StatusMessageContextMenu extends React.Component {
|
||||
static propTypes = {
|
||||
// js-sdk User object. Not required because it might not exist.
|
||||
user: PropTypes.object,
|
||||
// True when waiting for status change to complete.
|
||||
waiting: false,
|
||||
};
|
||||
|
||||
constructor(props, context) {
|
||||
@ -45,7 +43,7 @@ export default class StatusMessageContextMenu extends React.Component {
|
||||
user.on("User._unstable_statusMessage", this._onStatusMessageCommitted);
|
||||
}
|
||||
|
||||
componentWillUmount() {
|
||||
componentWillUnmount() {
|
||||
const { user } = this.props;
|
||||
if (!user) {
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user