From 8ef56e3c6332c31f5ab6a3fc6267ee5ac741e979 Mon Sep 17 00:00:00 2001 From: ArneBo Date: Mon, 24 Feb 2025 16:10:03 +0100 Subject: [PATCH] fix(front): allow string in id prop of artist detail --- front/src/components/library/ArtistBase.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/components/library/ArtistBase.vue b/front/src/components/library/ArtistBase.vue index c16da86d0..fe8aaf84f 100644 --- a/front/src/components/library/ArtistBase.vue +++ b/front/src/components/library/ArtistBase.vue @@ -26,7 +26,7 @@ import Modal from '~/components/ui/Modal.vue' import Spacer from '~/components/ui/Spacer.vue' interface Props { - id: number + id: number | string } const props = defineProps()