Browse Source

fix(gui): remove extra quote from iframe script

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/4714/head
Pranav C 2 years ago
parent
commit
f1103cbcd3
  1. 10
      packages/nc-gui/components/smartsheet/toolbar/ShareView.vue

10
packages/nc-gui/components/smartsheet/toolbar/ShareView.vue

@ -201,11 +201,11 @@ const iframeCode = computed(() => {
if (!sharedViewUrl.value) return
return `<iframe class="nc-embed"
"src="${sharedViewUrl.value}?embed"
frameborder="0"
width="100%"
height="700"
style="background: transparent; border: 1px solid #ddd"/>`
src="${sharedViewUrl.value}?embed"
frameborder="0"
width="100%"
height="700"
style="background: transparent; border: 1px solid #ddd"/>`
})
const copyIframeCode = async () => {

Loading…
Cancel
Save