chore: remove todos related to actions (#5572)
This commit is contained in:
parent
079b401b38
commit
7745de0e40
|
@ -687,7 +687,6 @@ class RoomView extends React.Component<IRoomViewProps, IRoomViewState> {
|
||||||
|
|
||||||
onEditInit = (messageId: string) => {
|
onEditInit = (messageId: string) => {
|
||||||
const { action } = this.state;
|
const { action } = this.state;
|
||||||
// TODO: implement multiple actions running. Quoting, then edit. Edit then quote.
|
|
||||||
if (action) {
|
if (action) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -736,7 +735,6 @@ class RoomView extends React.Component<IRoomViewProps, IRoomViewState> {
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// TODO: implement multiple actions running. Quoting, then edit. Edit then quote.
|
|
||||||
if (action) {
|
if (action) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -773,7 +771,6 @@ class RoomView extends React.Component<IRoomViewProps, IRoomViewState> {
|
||||||
};
|
};
|
||||||
|
|
||||||
onReactionInit = (messageId: string) => {
|
onReactionInit = (messageId: string) => {
|
||||||
// TODO: implement multiple actions running. Quoting, then edit. Edit then quote.
|
|
||||||
if (this.state.action) {
|
if (this.state.action) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -790,7 +787,6 @@ class RoomView extends React.Component<IRoomViewProps, IRoomViewState> {
|
||||||
|
|
||||||
onMessageLongPress = (message: TAnyMessageModel) => {
|
onMessageLongPress = (message: TAnyMessageModel) => {
|
||||||
const { action } = this.state;
|
const { action } = this.state;
|
||||||
// TODO: implement multiple actions running. Quoting, then edit. Edit then quote.
|
|
||||||
if (action && action !== 'quote') {
|
if (action && action !== 'quote') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue