mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 14:05:04 +08:00
Don't allow editing via up-arrow when Replying
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
f3c6c73329
commit
89d568ce97
@ -1143,7 +1143,7 @@ export default class MessageComposerInput extends React.Component {
|
|||||||
|
|
||||||
const editingEnabled = SettingsStore.isFeatureEnabled("feature_message_editing");
|
const editingEnabled = SettingsStore.isFeatureEnabled("feature_message_editing");
|
||||||
const shouldSelectHistory = (editingEnabled && e.altKey) || !editingEnabled;
|
const shouldSelectHistory = (editingEnabled && e.altKey) || !editingEnabled;
|
||||||
const shouldEditLastMessage = editingEnabled && !e.altKey && up;
|
const shouldEditLastMessage = editingEnabled && !e.altKey && up && !RoomViewStore.getQuotingEvent();
|
||||||
|
|
||||||
if (shouldSelectHistory) {
|
if (shouldSelectHistory) {
|
||||||
// Try select composer history
|
// Try select composer history
|
||||||
|
Loading…
Reference in New Issue
Block a user