diff --git a/front/src/components/audio/track/Row.vue b/front/src/components/audio/track/Row.vue index 12be1b144..243334674 100644 --- a/front/src/components/audio/track/Row.vue +++ b/front/src/components/audio/track/Row.vue @@ -192,8 +192,7 @@ const hover = ref(false) class="meta right floated column" > diff --git a/front/src/components/favorites/TrackFavoriteIcon.vue b/front/src/components/favorites/TrackFavoriteIcon.vue index 4ae97e608..dbad609b5 100644 --- a/front/src/components/favorites/TrackFavoriteIcon.vue +++ b/front/src/components/favorites/TrackFavoriteIcon.vue @@ -12,12 +12,14 @@ interface Props { track?: QueueTrack | Track button?: boolean border?: boolean + ghost?: boolean } const props = withDefaults(defineProps(), { track: () => ({} as Track), button: false, - border: false + border: false, + ghost: false }) const { t } = useI18n() @@ -46,7 +48,8 @@ const title = computed(() => isFavorite.value