From 2f3acdd75966db03190341562fc68579e6196b73 Mon Sep 17 00:00:00 2001 From: rustmailer Date: Wed, 3 Dec 2025 09:26:34 +0800 Subject: [PATCH] fix(ui, config): Ensure use_dangerous status is visible in ui --- web/src/features/accounts/components/account-detail.tsx | 4 ++++ web/src/features/accounts/components/step4.tsx | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/web/src/features/accounts/components/account-detail.tsx b/web/src/features/accounts/components/account-detail.tsx index 5885125..0625b44 100644 --- a/web/src/features/accounts/components/account-detail.tsx +++ b/web/src/features/accounts/components/account-detail.tsx @@ -120,6 +120,10 @@ export function AccountDetailDrawer({ open, onOpenChange, currentRow }: Props) { {t('accounts.encryption')}: {currentRow.imap?.encryption} +
+ {t('accounts.useDangerous')}: + {`${currentRow.use_dangerous}`} +
{t('accounts.auth')}: {currentRow.imap?.auth.auth_type === "OAuth2" ? ( diff --git a/web/src/features/accounts/components/step4.tsx b/web/src/features/accounts/components/step4.tsx index 4ceea4b..b1f3b65 100644 --- a/web/src/features/accounts/components/step4.tsx +++ b/web/src/features/accounts/components/step4.tsx @@ -58,6 +58,10 @@ export default function Step4() { {t('accounts.encryption')}: {summaryData.imap.encryption} + + {t('accounts.useDangerous')}: + {`${summaryData.use_dangerous}`} + {t('accounts.authType')}: {summaryData.imap.auth.auth_type}