perf: 切换到不同的分组后再打开创建对话框,会自动选择分组

This commit is contained in:
xiaojunnuo
2025-04-19 17:08:44 +08:00
parent d613aa8f3e
commit 893dcd4f24
6 changed files with 120 additions and 34 deletions
@@ -5,7 +5,7 @@ export class Cache {
return this.bucket[key];
}
async set(key: string, value: any, ttl: number) {
async set(key: string, value: any, ttl?: number) {
this.bucket[key] = value;
}