do not call home/end events if target is textbox

Closes #2114
pull/2118/head
Audric Ackermann 3 years ago
parent 7033f38928
commit 7b45635296
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -20,6 +20,10 @@ import { CallNotification } from './message/message-item/notification-bubble/Cal
import { SessionLastSeenIndicator } from './SessionLastSeenIndicator';
import { TimerNotification } from './TimerNotification';
function isNotTextboxEvent(e: KeyboardEvent) {
return (e?.target as any)?.type === undefined;
}
export const SessionMessagesList = (props: {
scrollToQuoteMessage: (options: QuoteClickOptions) => Promise<void>;
onPageUpPressed: () => void;
@ -37,12 +41,16 @@ export const SessionMessagesList = (props: {
props.onPageDownPressed();
});
useKey('Home', () => {
props.onHomePressed();
useKey('Home', e => {
if (isNotTextboxEvent(e)) {
props.onHomePressed();
}
});
useKey('End', () => {
props.onEndPressed();
useKey('End', e => {
if (isNotTextboxEvent(e)) {
props.onEndPressed();
}
});
return (

Loading…
Cancel
Save