Fix/storage retention cleanup (#2159)

* fix: add storage retention cleanup

* fix: prune completed tasks on completion

* fix: complete storage analysis i18n
This commit is contained in:
Junyan Chin
2026-05-02 17:09:31 +08:00
committed by GitHub
parent 8db55267d8
commit 0154ea6cd3
19 changed files with 1084 additions and 45 deletions

View File

@@ -1,5 +1,6 @@
import { SidebarChildVO } from '@/app/home/components/home-sidebar/HomeSidebarChild';
import i18n from '@/i18n';
import { HardDrive } from 'lucide-react';
const t = (key: string) => {
return i18n.t(key);
@@ -51,6 +52,18 @@ export const sidebarConfigList = [
},
section: 'home',
}),
new SidebarChildVO({
id: 'storage-analysis',
name: t('storageAnalysis.title'),
icon: <HardDrive className="text-blue-500" />,
route: '/home/storage-analysis',
description: t('storageAnalysis.description'),
helpLink: {
en_US: '',
zh_Hans: '',
},
section: 'home',
}),
new SidebarChildVO({
id: 'bots',
name: t('bots.title'),