Skip to content

Commit c499038

Browse files
Mutugiiidogi
andauthored
teams: smoother voices checks (fixes #9023) (#9033)
Co-authored-by: dogi <[email protected]>
1 parent 4064927 commit c499038

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "planet",
33
"license": "AGPL-3.0",
4-
"version": "0.20.5",
4+
"version": "0.20.6",
55
"myplanet": {
6-
"latest": "v0.28.80",
7-
"min": "v0.27.80"
6+
"latest": "v0.28.92",
7+
"min": "v0.27.92"
88
},
99
"scripts": {
1010
"ng": "ng",

src/app/news/news-list-item.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export class NewsListItemComponent implements OnInit, OnChanges, OnDestroy {
121121
} else {
122122
this.showLess = true;
123123
}
124-
if (this.item.doc.news?.conversations.length > 1) {
124+
if (this.item.doc.news?.conversations?.length > 1) {
125125
this.showExpand = true;
126126
} else {
127127
const messageLength = (this.item.doc.message && typeof this.item.doc.message === 'string') ? this.item.doc.message.length : 0;

0 commit comments

Comments
 (0)