Revert "Merge branch 'master' of github.com:owntone/owntone-server"

This reverts commit bb2a778b46, reversing
changes made to f8e2298b67.
This commit is contained in:
ejurgensen
2025-01-23 09:31:51 +01:00
parent 614bcaa630
commit 8a177ed48d
114 changed files with 3382 additions and 2603 deletions

View File

@@ -1,24 +1,27 @@
<template>
<navbar-top />
<vue-progress-bar class="has-background-info" />
<router-view v-slot="{ Component }">
<component :is="Component" />
</router-view>
<modal-dialog-remote-pairing
:show="pairing_active"
@close="pairing_active = false"
/>
<modal-dialog-update
:show="show_update_dialog"
@close="show_update_dialog = false"
/>
<notification-list v-show="!show_burger_menu" />
<navbar-bottom />
<div
v-show="show_burger_menu || show_player_menu"
class="overlay-fullscreen"
@click="show_burger_menu = show_player_menu = false"
/>
<div id="app">
<navbar-top />
<vue-progress-bar class="has-background-info" />
<router-view v-slot="{ Component }">
<component :is="Component" />
</router-view>
<modal-dialog-remote-pairing
:show="pairing_active"
@close="pairing_active = false"
/>
<modal-dialog-update
:show="show_update_dialog"
@close="show_update_dialog = false"
/>
<notification-list v-show="!show_burger_menu" />
<navbar-bottom />
<div
v-show="show_burger_menu || show_player_menu"
class="fd-overlay-fullscreen"
@click="show_burger_menu = show_player_menu = false"
/>
</div>
</template>
<script>