fix: 错删字段导致的bug

This commit is contained in:
2026-07-22 00:22:25 +08:00
parent e8738cca3c
commit aa4f3389a3
2 changed files with 3 additions and 3 deletions

View File

@@ -59,8 +59,8 @@ const {data} = await http.get<ApiResponse<Archive>>("post/archive");
}
.archive {
display: flex;
flex-direction: column;
max-width: 860px;
margin: 0 auto;
}
.archive-year {

View File

@@ -9,12 +9,12 @@ type ArchivePost = {
slug: string;
title: string;
published_at: string;
published_at_display: string;
category_name: string;
};
type ArchiveMonth = {
month: number;
display_month: string;
list: ArchivePost[];
};