diff --git a/entry/src/main/ets/ViewAbility/ViewAbility.ets b/entry/src/main/ets/ViewAbility/ViewAbility.ets index e6bc3ae..4d847b8 100644 --- a/entry/src/main/ets/ViewAbility/ViewAbility.ets +++ b/entry/src/main/ets/ViewAbility/ViewAbility.ets @@ -749,7 +749,7 @@ export default class ViewAbility extends ServiceExtensionAbility { let paramCallerBundleName = want.parameters?.['ohos.aafwk.param.callerBundleName'] as string; AppStorage.setOrCreate('paramCallerBundleName', paramCallerBundleName); - let pluginId: string = (want.parameters?.['DlpConnectionPluginId'] as DlpConnectionPluginIdObj)?.id; + let pluginId: string = (want.parameters?.['dlpConnectionPluginId'] as DlpConnectionPluginIdObj)?.id; if (pluginId === null || pluginId === undefined) { return true; } diff --git a/entry/src/main/ets/pages/encryptedSharing.ets b/entry/src/main/ets/pages/encryptedSharing.ets index a0d9ed2..4fcf871 100644 --- a/entry/src/main/ets/pages/encryptedSharing.ets +++ b/entry/src/main/ets/pages/encryptedSharing.ets @@ -557,7 +557,6 @@ struct encryptedSharing { .defaultFocus(false) .direction(SystemUtils.isRTL() ? Direction.Rtl : Direction.Ltr) .type(InputType.PhoneNumber) - .contentType(ContentType.PHONE_COUNTRY_CODE) .enterKeyType(EnterKeyType.NEW_LINE) .border(this.phoneFormatTips ? { width: Constants.DIALOG_MD_OFFSET, color: $r('sys.color.ohos_id_color_warning') } : { width: 0 })