Compare commits
2 Commits
45fb9eda1c
...
61501a9b64
Author | SHA1 | Date | |
---|---|---|---|
61501a9b64 | |||
c1507adac5 |
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"type": "tildefriends-app",
|
"type": "tildefriends-app",
|
||||||
"emoji": "🦀",
|
"emoji": "🦀",
|
||||||
"previous": "&rXz3M/3YLTkFQ8QkOJJItKAgBsu1aXBkQjy7M6/+I9w=.sha256"
|
"previous": "&UEIA5OmcpNMsBGeyxmgTdib+tkpPgr62iXdTlt1aH9U=.sha256"
|
||||||
}
|
}
|
||||||
|
@@ -435,12 +435,17 @@ class TfTabNewsFeedElement extends LitElement {
|
|||||||
|
|
||||||
close_private_chat() {
|
close_private_chat() {
|
||||||
this.mark_all_read();
|
this.mark_all_read();
|
||||||
|
console.log(this.hash);
|
||||||
this.dispatchEvent(
|
this.dispatchEvent(
|
||||||
new CustomEvent('closeprivatechat', {
|
new CustomEvent('closeprivatechat', {
|
||||||
bubbles: true,
|
bubbles: true,
|
||||||
composed: true,
|
composed: true,
|
||||||
detail: {
|
detail: {
|
||||||
key: JSON.stringify(this.hash.substring('#🔐'.length).split(',')),
|
key: JSON.stringify(
|
||||||
|
this.hash == '#🔐'
|
||||||
|
? []
|
||||||
|
: this.hash.substring('#🔐'.length).split(',')
|
||||||
|
),
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
8
metadata/en-US/changelogs/41.txt
Normal file
8
metadata/en-US/changelogs/41.txt
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
* Overhauling private messages interface.
|
||||||
|
* Add a loading indicator.
|
||||||
|
* Documented the core JavaScript.
|
||||||
|
* Fixed @-completion.
|
||||||
|
* Update:
|
||||||
|
* CodeMirror
|
||||||
|
* OpenSSL 3.5.2
|
||||||
|
* speedscope 1.23.1
|
Reference in New Issue
Block a user