style: fix linting

merge-requests/2506/merge
Kasper Seweryn 2023-09-21 12:57:30 +02:00
rodzic 185a61ecdd
commit f5200eecea
2 zmienionych plików z 21 dodań i 9 usunięć

Wyświetl plik

@ -81,15 +81,27 @@ store.dispatch('auth/fetchUser')
</script>
<template>
<div :key="store.state.instance.instanceUrl" :class="{
<div
:key="store.state.instance.instanceUrl"
:class="{
'has-bottom-player': tracks.length > 0,
'queue-focused': store.state.ui.queueFocused
}">
}"
>
<!-- here, we display custom stylesheets, if any -->
<link v-for="url in customStylesheets" :key="url" rel="stylesheet" property="stylesheet" :href="url">
<link
v-for="url in customStylesheets"
:key="url"
rel="stylesheet"
property="stylesheet"
:href="url"
>
<sidebar :width="width" @show:set-instance-modal="showSetInstanceModal = !showSetInstanceModal"
@show:shortcuts-modal="toggleShortcutsModal" />
<sidebar
:width="width"
@show:set-instance-modal="showSetInstanceModal = !showSetInstanceModal"
@show:shortcuts-modal="toggleShortcutsModal"
/>
<set-instance-modal v-model:show="showSetInstanceModal" />
<service-messages />
<transition name="queue">