mirror of
https://github.com/LibreSign/libresign.git
synced 2025-12-17 21:12:16 +01:00
fix: only show preserve order toggle with multiple signers
Hide preserve signing order toggle when there's only one signer, as signing order is not applicable in this case. Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
This commit is contained in:
parent
1d90a1dfc0
commit
e616899eeb
1 changed files with 1 additions and 1 deletions
|
|
@ -379,7 +379,7 @@ export default {
|
|||
return this.hasSigners && this.filesStore.canSave() && !this.isAdminFlowForced
|
||||
},
|
||||
showPreserveOrder() {
|
||||
return this.hasSigners && this.filesStore.canSave() && !this.isAdminFlowForced
|
||||
return this.totalSigners > 1 && this.filesStore.canSave() && !this.isAdminFlowForced
|
||||
},
|
||||
showViewOrderButton() {
|
||||
return this.isOrderedNumeric && this.totalSigners > 1 && this.hasSigners
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue