mirror of
https://github.com/docusealco/docuseal.git
synced 2026-06-23 04:10:11 +00:00
fix upload signature
This commit is contained in:
@@ -257,7 +257,7 @@ export default {
|
||||
this.remove()
|
||||
this.isInitialsStarted = true
|
||||
|
||||
this.drawOnCanvas(this.$refs.canvas)
|
||||
this.drawOnCanvas(event.target.files[0], this.$refs.canvas)
|
||||
|
||||
this.uploadImageInputKey = Math.random().toString()
|
||||
},
|
||||
|
||||
@@ -569,13 +569,11 @@ export default {
|
||||
this.remove()
|
||||
this.isSignatureStarted = true
|
||||
|
||||
this.drawOnCanvas(this.$refs.canvas)
|
||||
this.drawOnCanvas(event.target.files[0], this.$refs.canvas)
|
||||
|
||||
this.uploadImageInputKey = Math.random().toString()
|
||||
},
|
||||
drawOnCanvas (canvas) {
|
||||
const file = event.target.files[0]
|
||||
|
||||
drawOnCanvas (file, canvas) {
|
||||
if (file && file.type.match('image.*')) {
|
||||
const reader = new FileReader()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user