From 9900ffc43a8219da2a7f70e4cc80c1ac8ab8f3d9 Mon Sep 17 00:00:00 2001 From: Michael An <2331806369@qq.com> Date: Tue, 21 Jan 2025 11:30:27 +0800 Subject: [PATCH] fix trash table bug (#7399) --- frontend/src/components/dialog/trash-dialog/table/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/dialog/trash-dialog/table/index.js b/frontend/src/components/dialog/trash-dialog/table/index.js index f1f3488d73..760db85ffd 100644 --- a/frontend/src/components/dialog/trash-dialog/table/index.js +++ b/frontend/src/components/dialog/trash-dialog/table/index.js @@ -12,7 +12,7 @@ const Table = ({ repoID, renderFolder, data }) => { { isFixed: false, width: 0.4, children: gettext('Original path') }, { isFixed: false, width: 0.12, children: gettext('Delete Time') }, { isFixed: false, width: 0.13, children: gettext('Size') }, - { isFixed: false, width: 0.1, children: gettext('Size') }, + { isFixed: false, width: 0.1, children: '' }, ], []); const { items, showFolder, commitID, baseDir, folderPath, folderItems } = data;