aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-02-19 09:50:13 +0100
committerChocobozzz <me@florianbigard.com>2021-02-19 10:06:52 +0100
commit9d6b9d10ef8cbef39e89bc709285abffb0d8caa1 (patch)
tree3425b22556e00d1b15de15c72b2802cfc9374473 /shared
parentfae6e4da8f516a9d6c3bad9bf6f35811ccacbad8 (diff)
downloadPeerTube-9d6b9d10ef8cbef39e89bc709285abffb0d8caa1.tar.gz
PeerTube-9d6b9d10ef8cbef39e89bc709285abffb0d8caa1.tar.zst
PeerTube-9d6b9d10ef8cbef39e89bc709285abffb0d8caa1.zip
Fix video comments display with deleted comments
Diffstat (limited to 'shared')
-rw-r--r--shared/models/result-list.model.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/shared/models/result-list.model.ts b/shared/models/result-list.model.ts
index 2d5147a86..fcafcfb2f 100644
--- a/shared/models/result-list.model.ts
+++ b/shared/models/result-list.model.ts
@@ -2,3 +2,7 @@ export interface ResultList<T> {
2 total: number 2 total: number
3 data: T[] 3 data: T[]
4} 4}
5
6export interface ThreadsResultList <T> extends ResultList <T> {
7 totalNotDeletedComments: number
8}