diff --git a/components/global/AppModal.vue b/components/global/AppModal.vue index d280343855..4b07a78730 100644 --- a/components/global/AppModal.vue +++ b/components/global/AppModal.vue @@ -64,11 +64,6 @@ export default { showModal: false } }, - computed: { - open() { - return this.showModal - } - }, head() { return this.open ? { @@ -77,6 +72,11 @@ export default { } } : undefined + }, + computed: { + open() { + return this.showModal + } } } diff --git a/components/global/CodeGroup.vue b/components/global/CodeGroup.vue index 7e451f04db..b797f5fd0e 100644 --- a/components/global/CodeGroup.vue +++ b/components/global/CodeGroup.vue @@ -1,13 +1,13 @@