From 20b0d7f041374059c889a93a755f4889a031e85d 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 b75e480f29..29532e00dc 100644 --- a/src/Components/Request/IdentifySigner.vue +++ b/src/Components/Request/IdentifySigner.vue @@ -7,8 +7,9 @@ @update:account="updateAccount" @update:email="updateEmail" @update:display-name="updateDisplayName" /> - - {{ t('libresign', 'Signer name') }} + {{ t('libresign', 'Cancel') }} - + {{ saveButtonText }} @@ -101,6 +104,9 @@ export default { return {} } }, + signerSelected() { + return this.methods.account.value || this.methods.email.value + }, isNewSigner() { return this.id === null || this.id === undefined },