ssb: Fix private conversation keyboard alt+navigation. #125

This commit is contained in:
2025-08-13 19:24:25 -04:00
parent f902d0374c
commit 7cec0f7d61
3 changed files with 26 additions and 22 deletions

View File

@@ -141,7 +141,9 @@ class TfElement extends LitElement {
'',
'@',
'👍',
'🔐',
...Object.keys(this.grouped_private_messages)
.sort()
.map((x) => '🔐' + JSON.parse(x).join(',')),
...this.channels.map((x) => '#' + x),
];
let index = channel_names.indexOf(this.hash.substring(1));