fix: various DTLPanel issues
This commit is contained in:
parent
19d3235a2a
commit
be67441044
2 changed files with 11 additions and 8 deletions
|
|
@ -118,18 +118,16 @@
|
|||
class="dot"
|
||||
v-for="(proposal, index) in proposals"
|
||||
@click="activeProposal = proposal"
|
||||
:aria-selected="proposal.isActive"
|
||||
:aria-selected="activeProposal === proposal"
|
||||
:style="
|
||||
'--x:' +
|
||||
activeProposal.grades.position.complexity +
|
||||
proposal.grades.position.complexity +
|
||||
';--y:' +
|
||||
activeProposal.grades.position.weight
|
||||
proposal.grades.position.weight
|
||||
"
|
||||
:title="index === 0 ? 'Proposition initiale' : 'Alternative ' + index"
|
||||
:title="proposal.title"
|
||||
>
|
||||
<span class="sr-only">{{
|
||||
index === 0 ? "Proposition initiale" : "Alternative " + index
|
||||
}}</span>
|
||||
<span class="sr-only">{{ proposal.title }}</span>
|
||||
</button>
|
||||
</div>
|
||||
<div id="indicateur" class="px-32 py-16 border-b flow">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue