Skip to content

Commit

Permalink
Merge pull request #4056 from LibreSign/backport/4051/stable30
Browse files Browse the repository at this point in the history
[stable30] fix: prevent error when click at signer to add to document
  • Loading branch information
vitormattos authored Nov 26, 2024
2 parents d59d9fd + 6fd2b56 commit a7c9b5d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Components/Request/VisibleElements.vue
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,9 @@ export default {
this.filesStore.loading = false
},
onSelectSigner(signer) {
if (!this.$refs.pdfEditor) {
return
}
this.signerSelected = signer
const canvasList = this.$refs.pdfEditor.$refs.vuePdfEditor.$refs.pdfBody.querySelectorAll('canvas')
canvasList.forEach((canvas) => {
Expand Down

0 comments on commit a7c9b5d

Please sign in to comment.