From 3aeb367ce03415ac3f382c5a05afbe53967133d9 Mon Sep 17 00:00:00 2001 From: Vitor Mattos Date: Thu, 21 Nov 2024 12:36:14 -0300 Subject: [PATCH] feat: only show name and allow save signer when have signer Signed-off-by: Vitor Mattos --- src/Components/Request/IdentifySigner.vue | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/Components/Request/IdentifySigner.vue b/src/Components/Request/IdentifySigner.vue index fc392ee4b9..d3a503d50c 100644 --- a/src/Components/Request/IdentifySigner.vue +++ b/src/Components/Request/IdentifySigner.vue @@ -11,8 +11,9 @@ @update:account="updateAccount" @update:email="updateEmail" @update:display-name="updateDisplayName" /> - - {{ t('libresign', 'Signer name') }} + {{ t('libresign', 'Cancel') }} - + {{ saveButtonText }} @@ -105,6 +108,9 @@ export default { return {} } }, + signerSelected() { + return this.methods.account.value || this.methods.email.value + }, isNewSigner() { return this.id === null || this.id === undefined },