Merge branch '2584-fix-front-invisible-usermenu' into 'develop'

Resolve "fix(front) Invisible usermenu" NOCHANGELOG

Closes #2584

See merge request funkwhale/funkwhale!2989
merge-requests/2989/merge
Arne Bollinger 2025-11-28 10:31:47 +00:00
commit 2dcda70a80
2 zmienionych plików z 2 dodań i 8 usunięć

Wyświetl plik

@ -290,13 +290,7 @@ const playlistLibraryFollowInfo = computed(() => {
:ghost="discrete"
:low-height="lowHeight || undefined"
@click.stop.prevent="replacePlay()"
>
<template v-if="!discrete && !iconOnly">
<span>
{{ t('components.audio.PlayButton.button.discretePlay') }}
</span>
</template>
</Button>
/>
</template>
<style lang="scss" scoped>

Wyświetl plik

@ -45,7 +45,7 @@ const slots = useSlots()
// TODO: Test upload button progress indicator (in Sidebar.vue)
// TODO: Find a simpler implementation. This has too much cognitive load!
const isIconOnly = computed(() =>
(('round' in props && props.round) || !slots.default) // button is round or has no content
!slots.default // button has no content
&& ( !!props.icon
|| ('square' in props && props.square)
|| ('squareSmall' in props && props.squareSmall)