From 072862cd1e613e6508102694cb6604a1c5d24ecc Mon Sep 17 00:00:00 2001 From: Yone Date: Wed, 20 Dec 2023 10:48:08 +0800 Subject: [PATCH] Fix the issue of always displaying `Unbind` in the login method on the user profile page (#5079) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #### What type of PR is this? /kind bug #### What this PR does / why we need it: Fix the issue of always displaying Unbind in the login method on the user profile page. #### Which issue(s) this PR fixes: Fixes #5048 #### Special notes for your reviewer: @JohnNiang 's help. #### Does this PR introduce a user-facing change? ```release-note 修复个人中心用户登录方式仅显示解绑问题 ``` --- console/uc-src/modules/profile/tabs/Detail.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console/uc-src/modules/profile/tabs/Detail.vue b/console/uc-src/modules/profile/tabs/Detail.vue index 88ba4c2f97..b948cd84d4 100644 --- a/console/uc-src/modules/profile/tabs/Detail.vue +++ b/console/uc-src/modules/profile/tabs/Detail.vue @@ -185,7 +185,7 @@ const emailVerifyModal = ref(false); type="secondary" @click="handleBindAuth(authProvider)" > - {{ $t("core.uc_profile.detail.operations.unbind.button") }} + {{ $t("core.uc_profile.detail.operations.bind.button") }}