correct aria-controls to remove - issue #1783

This commit is contained in:
Laurent GAY
2025-06-26 11:36:04 +02:00
parent ef1adecc12
commit c67fdae892
2 changed files with 4 additions and 3 deletions

View File

@@ -92,7 +92,6 @@
</div> </div>
<o-collapse <o-collapse
v-model:open="detailsAddress" v-model:open="detailsAddress"
:aria-id="`${id}-address-details`"
class="my-3" class="my-3"
v-if="allowManualDetails" v-if="allowManualDetails"
> >
@@ -106,7 +105,10 @@
{{ t("Details") }} {{ t("Details") }}
</o-button> </o-button>
</template> </template>
<form @submit.prevent="saveManualAddress"> <form
@submit.prevent="saveManualAddress"
:aria-id="`${id}-address-details`"
>
<header> <header>
<h2>{{ t("Manually enter address") }}</h2> <h2>{{ t("Manually enter address") }}</h2>
</header> </header>

View File

@@ -5,7 +5,6 @@
<button <button
type="button" type="button"
class="py-3 w-full flex items-center justify-between text-gray-400 hover:text-gray-500 dark:text-slate-100 hover:dark:text-slate-200" class="py-3 w-full flex items-center justify-between text-gray-400 hover:text-gray-500 dark:text-slate-100 hover:dark:text-slate-200"
aria-controls="filter-section-mobile-0"
:aria-expanded="opened" :aria-expanded="opened"
@click="$emit('update:opened', !opened)" @click="$emit('update:opened', !opened)"
> >