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

do not display prepend and append for article when mobile

parent 2e3f1d56
No related branches found
No related tags found
1 merge request!131Merge relevant Abstract and references
Pipeline #117839 failed
This commit is part of merge request !131. Comments created here will be created in the context of that merge request.
......@@ -34,10 +34,10 @@ const articleAbstract = computed(() => {
<template>
<v-list-item :href="article?.href" :id="props.doi" :target="article?.target" density="compact" color="transparent"
class="px-1">
<template #prepend>
<template v-if="!mobile" #prepend>
<v-icon icon="md:star" :color="props.isRelevant ? 'info' : 'transparent'"></v-icon>
</template>
<template #append>
<template v-if="!mobile" #append>
<v-btn v-if="articleAbstract" size="x-small" variant="plain"
:append-icon="show ? 'mdi-chevron-up' : 'mdi-chevron-down'" class="px-0"
@click.stop.prevent="show = !show">Abstract</v-btn>
......
package-lock.json 0 → 100644
+ 15185
0
View file @ 6b41b2a2
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment