style: fix linting

This commit is contained in:
Kasper Seweryn 2023-09-21 12:57:30 +02:00
parent 185a61ecdd
commit f5200eecea
2 changed files with 21 additions and 9 deletions

View File

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