From c9f1880baf39f71c9ec6a02d3287c1e1cf636d46 Mon Sep 17 00:00:00 2001 From: zxhlyh Date: Wed, 20 Aug 2025 17:28:53 +0800 Subject: [PATCH] fix: credential default badge --- web/app/components/plugins/plugin-auth/authorized/item.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/web/app/components/plugins/plugin-auth/authorized/item.tsx b/web/app/components/plugins/plugin-auth/authorized/item.tsx index 47b6ce8c92..f8a1033de7 100644 --- a/web/app/components/plugins/plugin-auth/authorized/item.tsx +++ b/web/app/components/plugins/plugin-auth/authorized/item.tsx @@ -136,6 +136,13 @@ const Item = ({ > {credential.name} + { + credential.is_default && ( + + {t('plugin.auth.default')} + + ) + } ) }