You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When set initial image and click button back initi modal in step 1 and not in step 2 in preview. Adding the line if(this.initialImgUrl) this.setStep(2); in method off is solved
first thank you for this amazing library. @rodmayes is this when you set a image and save it and try to edit it.. modal opens with existing image.. there you click back and browse area is shown and there you click cancel and the the modal close.. if you click the button to open the modal.. modal shows the browse box ? is this the issue about ? I need to show to existing image (second preview step ) in this situation. how to solve this ?
Thank you.
When set initial image and click button back initi modal in step 1 and not in step 2 in preview. Adding the line if(this.initialImgUrl) this.setStep(2); in method off is solved
off() {
setTimeout(()=> {
this.$emit('input', false);
if(this.initialImgUrl) this.setStep(2);
else if(this.step == 3 && this.loading == 2){
this.setStep(1);
}
}, 200);
},
The text was updated successfully, but these errors were encountered: