Remove useless iframe attributes

This commit is contained in:
Julien Nahum 2024-02-01 18:40:12 +01:00
parent 64184e9aaf
commit fcb9999ed6
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ export default {
},
iframeCode() {
const share_url = (this.extraQueryParam) ? this.form.share_url + "?" + this.extraQueryParam : this.form.share_url + this.extraQueryParam
return '<iframe style="border:none;width:100%;" frameborder="0" width="100%" frameborder="0" id="' + this.iframeId + '" src="' + share_url + '"></iframe>'
return '<iframe style="border:none;width:100%;" id="' + this.iframeId + '" src="' + share_url + '"></iframe>'
},
iframeId() {
return 'form-' + this.form.slug