Skip to content

Commit 9243b1f

Browse files
authored
Merge pull request #1589 from session-foundation/release-1.16.8
Session 1.16.8
2 parents 7e0782a + b33e690 commit 9243b1f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "session-desktop",
33
"productName": "Session",
44
"description": "Private messaging from your desktop",
5-
"version": "1.16.7",
5+
"version": "1.16.8",
66
"license": "GPL-3.0",
77
"author": {
88
"name": "Session Foundation",

ts/components/conversation/composition/CompositionBox.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -680,6 +680,10 @@ class CompositionBoxInner extends Component<Props, State> {
680680
event.preventDefault();
681681
event.stopPropagation();
682682
}
683+
684+
if (this.state.draft.length && (event.key === 'Home' || event.key === 'End')) {
685+
event.stopPropagation();
686+
}
683687
}
684688

685689
private getSendableText(): string {

0 commit comments

Comments
 (0)