diff options
author | crupest <crupest@outlook.com> | 2020-10-27 18:48:48 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-10-27 18:48:48 +0800 |
commit | f88f9e7281c63da6a3d2c87be439fbcb30f6fe20 (patch) | |
tree | 469d88e685738bc91b2fc19e68a49750aba1a4bd | |
parent | 783cd4eb57d287d72c7752bb35fc5f9f5e42dfb6 (diff) | |
download | timeline-f88f9e7281c63da6a3d2c87be439fbcb30f6fe20.tar.gz timeline-f88f9e7281c63da6a3d2c87be439fbcb30f6fe20.tar.bz2 timeline-f88f9e7281c63da6a3d2c87be439fbcb30f6fe20.zip |
fix: Fix a bug in 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 a9511c64..eb7d5065 100644 --- a/Timeline/ClientApp/src/app/http/timeline.ts +++ b/Timeline/ClientApp/src/app/http/timeline.ts @@ -145,7 +145,7 @@ type RawTimelinePostContent = interface RawTimelinePostInfo { id: number; - content: HttpTimelinePostContent; + content: RawTimelinePostContent; time: string; lastUpdated: string; author: HttpUser; |