From 30f1355bb4967210e3e59c263af5567ee2490846 Mon Sep 17 00:00:00 2001 From: hailin Date: Tue, 24 Feb 2026 02:27:43 -0800 Subject: [PATCH] =?UTF-8?q?fix(admin-web):=20snapshots=20=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E8=A1=A5=E4=B8=8A=20PageContainer=20=E5=8C=85?= =?UTF-8?q?=E8=A3=B9=EF=BC=8C=E6=81=A2=E5=A4=8D=E4=BE=A7=E8=BE=B9=E6=A0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- frontend/admin-web/src/app/(dashboard)/snapshots/page.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/frontend/admin-web/src/app/(dashboard)/snapshots/page.tsx b/frontend/admin-web/src/app/(dashboard)/snapshots/page.tsx index 564cddd7..37dfeabe 100644 --- a/frontend/admin-web/src/app/(dashboard)/snapshots/page.tsx +++ b/frontend/admin-web/src/app/(dashboard)/snapshots/page.tsx @@ -1,6 +1,7 @@ 'use client'; import { useState, useEffect, useCallback } from 'react'; +import { PageContainer } from '@/components/layout'; import { snapshotApi } from '@/infrastructure/api/snapshot.api'; import { useSnapshotPolling } from '@/hooks/useSnapshotPolling'; import type { @@ -166,8 +167,8 @@ export default function SnapshotsPage() { }; return ( -
-

数据快照

+ +
{/* 创建备份表单 */}
@@ -348,6 +349,7 @@ export default function SnapshotsPage() {
)}
-
+ + ); }