[web] Fix linting errors

This commit is contained in:
chme
2022-02-19 07:05:59 +01:00
parent c78f861f45
commit 6519b18aa0
28 changed files with 51 additions and 21 deletions

View File

@@ -14,7 +14,7 @@
:show="show_update_dialog"
@close="show_update_dialog = false"
/>
<notifications v-show="!show_burger_menu" />
<notification-list v-show="!show_burger_menu" />
<navbar-bottom />
<div
v-show="show_burger_menu || show_player_menu"
@@ -27,7 +27,7 @@
<script>
import NavbarTop from '@/components/NavbarTop.vue'
import NavbarBottom from '@/components/NavbarBottom.vue'
import Notifications from '@/components/Notifications.vue'
import NotificationList from '@/components/NotificationList.vue'
import ModalDialogRemotePairing from '@/components/ModalDialogRemotePairing.vue'
import ModalDialogUpdate from '@/components/ModalDialogUpdate.vue'
import webapi from '@/webapi'
@@ -40,7 +40,7 @@ export default {
components: {
NavbarTop,
NavbarBottom,
Notifications,
NotificationList,
ModalDialogRemotePairing,
ModalDialogUpdate
},