From 380054381138112706e258dbc1d7337184d6a0b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=BF=97=E6=B8=AF?= Date: Mon, 18 Aug 2025 12:37:01 +0000 Subject: [PATCH] =?UTF-8?q?update=20feature/bigfolder/src/main/ets/default?= =?UTF-8?q?/model/BigFolderModel.ts.=20crash=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 王志港 --- .../bigfolder/src/main/ets/default/model/BigFolderModel.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/feature/bigfolder/src/main/ets/default/model/BigFolderModel.ts b/feature/bigfolder/src/main/ets/default/model/BigFolderModel.ts index f6976227..28c42086 100644 --- a/feature/bigfolder/src/main/ets/default/model/BigFolderModel.ts +++ b/feature/bigfolder/src/main/ets/default/model/BigFolderModel.ts @@ -49,15 +49,15 @@ export class BigFolderModel { } getFolderLayout(): any { - return this.mFolderLayoutConfig.getFolderLayoutInfo()?.folderLayoutTable; + return this.mFolderLayoutConfig?.getFolderLayoutInfo()?.folderLayoutTable; } getFolderOpenLayout(): any { - return this.mFolderLayoutConfig.getFolderLayoutInfo()?.folderOpenLayoutTable; + return this.mFolderLayoutConfig?.getFolderLayoutInfo()?.folderOpenLayoutTable; } getFolderAddAppLayout(): any { - return this.mFolderLayoutConfig.getFolderLayoutInfo()?.folderAddAppLayoutTable; + return this.mFolderLayoutConfig?.getFolderLayoutInfo()?.folderAddAppLayoutTable; } /** -- Gitee