diff --git a/services/dialog_ui/ams_system_dialog/AppScope/app.json b/services/dialog_ui/ams_system_dialog/AppScope/app.json index ba2143cbb7..ef04b588b3 100644 --- a/services/dialog_ui/ams_system_dialog/AppScope/app.json +++ b/services/dialog_ui/ams_system_dialog/AppScope/app.json @@ -2,8 +2,8 @@ "app": { "bundleName": "com.ohos.amsdialog", "vendor": "example", - "versionCode": 1000015, - "versionName": "1.6.5", + "versionCode": 1000016, + "versionName": "1.6.6", "icon": "$media:app_icon", "label": "$string:app_name", "distributedNotificationEnabled": true, diff --git a/services/dialog_ui/ams_system_dialog/AppScope/app.json5 b/services/dialog_ui/ams_system_dialog/AppScope/app.json5 index bd3b22e2da..55f7641fb2 100644 --- a/services/dialog_ui/ams_system_dialog/AppScope/app.json5 +++ b/services/dialog_ui/ams_system_dialog/AppScope/app.json5 @@ -17,8 +17,8 @@ "app": { "bundleName": "com.ohos.amsdialog", "vendor": "example", - "versionCode": 1000015, - "versionName": "1.6.5", + "versionCode": 1000016, + "versionName": "1.6.6", "icon": "$media:app_icon", "label": "$string:app_name", "distributedNotificationEnabled": true, diff --git a/services/dialog_ui/ams_system_dialog/feature/src/main/ets/view/IntentContent.ets b/services/dialog_ui/ams_system_dialog/feature/src/main/ets/view/IntentContent.ets index f79ed5f25b..55d03cb51b 100644 --- a/services/dialog_ui/ams_system_dialog/feature/src/main/ets/view/IntentContent.ets +++ b/services/dialog_ui/ams_system_dialog/feature/src/main/ets/view/IntentContent.ets @@ -68,13 +68,15 @@ export struct IntentContent { insightIntentDriver.getAllInsightIntentInfo(insightIntentDriver.GetInsightIntentFlag.GET_FULL_INSIGHT_INTENT) .then((data) => { this.listMaterial = data as IntentInfo[]; - this.intermediateGroupMaterial = this.listMaterial.reduce((acc, item) => { - const bundleName: string = item.bundleName; - if (!acc[bundleName]) { - acc[bundleName] = []; - } - acc[bundleName].push(item); - return acc; + this.intermediateGroupMaterial = this.listMaterial + .filter(item => item.developType != insightIntentDriver.DevelopType.CONFIGURATION) + .reduce((acc, item) => { + const bundleName: string = item.bundleName; + if (!acc[bundleName]) { + acc[bundleName] = []; + } + acc[bundleName].push(item); + return acc; }, {} as Record) const bundleNames = Object.keys(this.intermediateGroupMaterial); const promises = bundleNames.map(async (bundleName) => {