削除タグが履歴で取得されるとフロントが落ちるバグ(#290) (#292)

#290

#290

'frontend/src/pages/posts/PostHistoryPage.tsx' を更新

'frontend/src/types.ts' を更新

Co-authored-by: miteruzo <miteruzo@naver.com>
Reviewed-on: #292
このコミットはPull リクエスト #292 でマージされました.
このコミットが含まれているのは:
2026-03-14 00:25:18 +09:00
コミット bcce7f2011
2個のファイルの変更6行の追加4行の削除
+2 -2
ファイルの表示
@@ -54,8 +54,8 @@ export type Post = {
export type PostTagChange = {
post: Post
tag: Tag
user?: User
tag: Tag | null
user: User | null
changeType: 'add' | 'remove'
timestamp: string }