Skip to content

Commit

Permalink
[gcp] fix bug: At.vue insertHtml 'suffix' is not defined !! also othe…
Browse files Browse the repository at this point in the history
  • Loading branch information
fritx committed Aug 9, 2022
1 parent 29e662f commit 021b002
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/At.vue
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ export default {
node.parentNode.insertBefore(newElement, secondPart);
r.setEndBefore(secondPart)
} else {
const t = document.createTextNode(suffix)
const t = document.createTextNode(this.suffix)
r.insertNode(newElement)
r.setEndAfter(newElement)
r.insertNode(t)
Expand Down

0 comments on commit 021b002

Please sign in to comment.