0
0
Fork 0

Fix error in getting the element.

This commit is contained in:
Oliver-Akins 2020-11-03 18:27:23 -07:00
parent 4dec762c98
commit ae8c0f3e26

View file

@ -109,7 +109,7 @@ export default {
}
},
beforeDestroy() {
document.body.removeChild(document.body.getElementById(this.style_id));
document.body.removeChild(document.getElementById(this.style_id));
},
}
</script>