Skip to content

Commit b168b62

Browse files
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 <[email protected]>
1 parent 71cb2d3 commit b168b62

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Components/RightSidebar/RequestSignatureTab.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ export default {
379379
return this.hasSigners && this.filesStore.canSave() && !this.isAdminFlowForced
380380
},
381381
showPreserveOrder() {
382-
return this.hasSigners && this.filesStore.canSave() && !this.isAdminFlowForced
382+
return this.totalSigners > 1 && this.filesStore.canSave() && !this.isAdminFlowForced
383383
},
384384
showViewOrderButton() {
385385
return this.isOrderedNumeric && this.totalSigners > 1 && this.hasSigners

0 commit comments

Comments
 (0)