Skip to content
Snippets Groups Projects
Commit c3a0b5e9 authored by Remi  PLANEL's avatar Remi PLANEL
Browse files

add the correct id to make internal links

parent ca0e22e2
No related branches found
No related tags found
No related merge requests found
Pipeline #117886 passed with stages
in 9 minutes and 9 seconds
...@@ -32,7 +32,7 @@ const articleAbstract = computed(() => { ...@@ -32,7 +32,7 @@ const articleAbstract = computed(() => {
}); });
</script> </script>
<template> <template>
<v-list-item :href="article?.href" :id="props.doi" :target="article?.target" density="compact" color="transparent" <v-list-item :href="article?.href" :id="`ref-${props.doi}`" :target="article?.target" density="compact" color="transparent"
class="px-1"> class="px-1">
<template v-if="!mobile" #prepend> <template v-if="!mobile" #prepend>
<v-icon icon="md:star" :color="props.isRelevant ? 'info' : 'transparent'"></v-icon> <v-icon icon="md:star" :color="props.isRelevant ? 'info' : 'transparent'"></v-icon>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment