docusealco / docuseal

Open source DocuSign alternative. Create, fill, and sign digital documents ✍️
https://www.docuseal.co
GNU Affero General Public License v3.0
5.97k stars 410 forks source link

Signature not stamped on PDF #80

Closed 3brover005 closed 1 year ago

3brover005 commented 1 year ago

Latest release seems to not stamp the signature on the pdf.

image

Getting the following error when I click on the signature area above (after signing): Uncaught (in promise) TypeError: Cannot read properties of null (reading 'querySelector'):

Code: this.$refs.form.querySelector('input[type="date"], input[type="text"], select')?.focus()

Looks like the $refs.form var is lost

AlexandrToorchyn commented 1 year ago

@3brover005 this.$refs.form.querySelector('input[type="date"], input[type="text"], select')?.focus() null reference error is not related to the signature upload and happens happens after mouse click on the signature field once the form is completed (that's a know error that has no impact on the user experience).

Missing signature might be related to your specific/custom docuseal setup/code. I was not able to reproduce this in the latest docker version.

3brover005 commented 1 year ago

You are right, the issue was with bad setup on our end. Thanks