From a302ec1f087a1203772ee605a33b535dbf26fd06 Mon Sep 17 00:00:00 2001 From: taehoon <th.dev91@gmail.com> Date: Fri, 18 Oct 2019 11:57:54 -0400 Subject: [PATCH] fix eslint warnings --- src/App.vue | 5 ++++- src/components/modal/modal.vue | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/App.vue b/src/App.vue index 33077c9ca..a53bcb970 100644 --- a/src/App.vue +++ b/src/App.vue @@ -120,7 +120,10 @@ <MobilePostStatusButton /> <UserReportingModal /> <PostStatusModal /> - <portal-target name="modal" multiple /> + <portal-target + name="modal" + multiple + /> </div> </template> diff --git a/src/components/modal/modal.vue b/src/components/modal/modal.vue index e0722d65e..d4fe9f76d 100644 --- a/src/components/modal/modal.vue +++ b/src/components/modal/modal.vue @@ -1,8 +1,8 @@ <template> <portal to="modal"> <div - v-body-scroll-lock="isOpen" v-show="isOpen" + v-body-scroll-lock="isOpen" :class="['modal-view', viewClass]" @click.self="closeModal" > -- GitLab