diff options
author | Chocobozzz <me@florianbigard.com> | 2021-02-19 09:50:13 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-02-19 10:06:52 +0100 |
commit | 9d6b9d10ef8cbef39e89bc709285abffb0d8caa1 (patch) | |
tree | 3425b22556e00d1b15de15c72b2802cfc9374473 /shared | |
parent | fae6e4da8f516a9d6c3bad9bf6f35811ccacbad8 (diff) | |
download | PeerTube-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.ts | 4 |
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 | |||
6 | export interface ThreadsResultList <T> extends ResultList <T> { | ||
7 | totalNotDeletedComments: number | ||
8 | } | ||