diff --git a/Dockerfile b/Dockerfile index 706f4da9..30d58360 100644 --- a/Dockerfile +++ b/Dockerfile @@ -78,7 +78,7 @@ LABEL org.opencontainers.image.title="PMOMusic UPNP Music Server" LABEL org.opencontainers.image.version="0.1" LABEL org.opencontainers.image.authors="eric@coissac.eu" LABEL org.opencontainers.image.licenses="CeCILL-2.0" -LABEL org.opencontainers.image.url="https://gargoton.petite-maison-orange.fr/eric/pmomusic" +LABEL org.opencontainers.image.source="https://gargoton.petite-maison-orange.fr/eric/pmomusic" LABEL org.opencontainers.image.description="PMOMusic est une application Rust proposant en un binaire unique une Serveur de Musique, et une point de controle UPNP controlable via une application web." # Install only runtime dependencies diff --git a/pmoapp/webapp/src/components/pmocontrol/QueueItem.vue b/pmoapp/webapp/src/components/pmocontrol/QueueItem.vue index 8dd7e808..968bbc5d 100644 --- a/pmoapp/webapp/src/components/pmocontrol/QueueItem.vue +++ b/pmoapp/webapp/src/components/pmocontrol/QueueItem.vue @@ -6,10 +6,19 @@ defineProps<{ item: QueueItem isCurrent: boolean }>() + +const emit = defineEmits<{ + click: [item: QueueItem] +}>() + +function handleClick(item: QueueItem) { + console.log('[QueueItem] Click detected on item:', item.index, item.title) + emit('click', item) +}