From afe3512876f528b06f88f3a942added8c81a82b8 Mon Sep 17 00:00:00 2001 From: Zyronon Date: Tue, 12 Aug 2025 11:41:00 +0800 Subject: [PATCH] Update func.ts --- src/types/func.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/func.ts b/src/types/func.ts index 4698fd2a..4ba3cd3d 100644 --- a/src/types/func.ts +++ b/src/types/func.ts @@ -65,7 +65,7 @@ export function getDefaultDict(val: Partial = {}): Dict { complete: false, ...val, words: shallowReactive(val.words ?? []), - list: shallowReactive(val.articles ?? []), + articles: shallowReactive(val.articles ?? []), statistics: shallowReactive(val.statistics ?? []) } }