Closed Shofiul-Alam closed 4 months ago
When clicking save as to save current template with a different name following error is coming up.
Also I did not found any element input[data-v-filename]. I changed as follows in the builder.js file and it worked. Please do a review.
document.querySelector("#save-offcanvas [data-v-filename]").innerHTML = filename; // document.querySelector("#save-offcanvas input[data-v-filename]").val(filename); document.querySelector("#save-offcanvas input[data-v-basename]").value = filename; document.querySelector("#save-offcanvas [data-v-theme-folders]").value = folder;
Thank you for the bug report, it's fixed in the last commit https://github.com/givanz/Vvveb/commit/fa2d148b920fcc02e25b3387de1da60cb466facb
@givanz Many many thanks.
When clicking save as to save current template with a different name following error is coming up.
Also I did not found any element input[data-v-filename]. I changed as follows in the builder.js file and it worked. Please do a review.