From f1bdc32fea549860eacea50bbe91c3fafaaef367 Mon Sep 17 00:00:00 2001 From: Hyun Seungmin Date: Wed, 7 Aug 2024 17:44:07 +0900 Subject: [PATCH] hide private key raw text by default --- popup/src/components/AccountManager.vue | 34 ++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/popup/src/components/AccountManager.vue b/popup/src/components/AccountManager.vue index 624bee7..bbb8df5 100644 --- a/popup/src/components/AccountManager.vue +++ b/popup/src/components/AccountManager.vue @@ -37,7 +37,38 @@ - + + + + {{ imports.showPrivateKey ? t('hidePk') : t('showPk') }} + @@ -140,6 +171,7 @@ export default defineComponent({ dialog: false, accountName: "", privateKey: "", + showPrivateKey: false, error: null as string | null, importType: "raw", jsonFile: undefined as File | undefined,