forked from mystiq/hydrogen-web
No need to git add . whole expression
This commit is contained in:
parent
72691eeb9d
commit
22356bee51
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ export class BaseEventEntry extends BaseEntry {
|
||||||
}
|
}
|
||||||
|
|
||||||
get isReply() {
|
get isReply() {
|
||||||
return !!(this.relation?.["m.in_reply_to"] || this.isThread);
|
return !!this.relation?.["m.in_reply_to"] || this.isThread;
|
||||||
}
|
}
|
||||||
|
|
||||||
get isThread() {
|
get isThread() {
|
||||||
|
|
Loading…
Reference in a new issue