diff options
author | crupest <crupest@outlook.com> | 2020-08-23 23:10:20 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-08-23 23:10:20 +0800 |
commit | 82d4547e613e7ee6e49955011d47647e52a24485 (patch) | |
tree | b06095cdfd8aaff8996a403ac81f1b2310f698ba /Timeline/ClientApp/src/app/http | |
parent | a9edf94e42e5288c0d46994546eef6a507768fcf (diff) | |
download | timeline-82d4547e613e7ee6e49955011d47647e52a24485.tar.gz timeline-82d4547e613e7ee6e49955011d47647e52a24485.tar.bz2 timeline-82d4547e613e7ee6e49955011d47647e52a24485.zip |
Post list is now patched.
Diffstat (limited to 'Timeline/ClientApp/src/app/http')
-rw-r--r-- | Timeline/ClientApp/src/app/http/timeline.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Timeline/ClientApp/src/app/http/timeline.ts b/Timeline/ClientApp/src/app/http/timeline.ts index d8f0b49c..c4ebdee9 100644 --- a/Timeline/ClientApp/src/app/http/timeline.ts +++ b/Timeline/ClientApp/src/app/http/timeline.ts @@ -66,7 +66,7 @@ export interface HttpTimelineDeletedPostInfo { id: number;
time: Date;
lastUpdated: Date;
- author: HttpUser;
+ author?: HttpUser;
deleted: true;
}
|