diff --git a/front/src/BookListElement.vue b/front/src/BookListElement.vue index f26b855..a4c49b4 100644 --- a/front/src/BookListElement.vue +++ b/front/src/BookListElement.vue @@ -3,6 +3,7 @@ const props = defineProps({ title: String, author: String, + id: BigInt, imagePath: String, }); const imagePathOrDefault = (props.imagePath == "" || typeof props.imagePath === 'undefined') ? "../defaultbook.png" : props.imagePath; @@ -11,8 +12,15 @@ const imagePathOrDefault = (props.imagePath == "" || typeof props.imagePath ===