Skip to content

Commit

Permalink
🐛 año activo solo si lista es años
Browse files Browse the repository at this point in the history
  • Loading branch information
1cgonza committed Nov 13, 2024
1 parent 9fc7330 commit fef54de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aplicaciones/www/src/componentes/LineaTiempo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ function abrirElemento(evento: MouseEvent, i: string) {
:style="{ transform: `translateX(${posX(+a.nombre)}px)` }"
@click="abrirElemento($event, a.id)"
class="punto"
:class="cerebroFicha.idActual === a.id ? 'activo' : ''"
:class="cerebroFicha.llaveLista === 'años' && cerebroFicha.idActual === a.id ? 'activo' : ''"
>
<circle :r="dims.r" cx="0" cy="30" filter="url(#sombra)" />
<text class="fecha" x="0" y="60" text-anchor="middle">
Expand Down

0 comments on commit fef54de

Please sign in to comment.