Remove redundant appA11yTitle

This commit is contained in:
Patrick H. Lauke 2022-03-27 10:16:23 +01:00
parent 114c75501a
commit 2f169ef3e3
2 changed files with 2 additions and 12 deletions

View File

@ -25,12 +25,7 @@
</div>
<div class="box">
<div class="box-header">
<button
type="button"
(click)="toggleCustom()"
appA11yTitle="{{ 'customEnvironment' | i18n }}"
[attr.aria-expanded]="showCustom"
>
<button type="button" (click)="toggleCustom()" [attr.aria-expanded]="showCustom">
<i class="bwi bwi-plus-square" [hidden]="showCustom" aria-hidden="true"></i>
<i class="bwi bwi-minus-square" [hidden]="!showCustom" aria-hidden="true"></i>
{{ "customEnvironment" | i18n }}

View File

@ -26,12 +26,7 @@
</div>
<div class="box">
<div class="box-header">
<button
type="button"
(click)="toggleOptions()"
appA11yTitle="{{ 'options' | i18n }}"
[attr.aria-expanded]="showOptions"
>
<button type="button" (click)="toggleOptions()" [attr.aria-expanded]="showOptions">
<i class="bwi bwi-plus-square" aria-hidden="true" [hidden]="showOptions"></i>
<i class="bwi bwi-minus-square" aria-hidden="true" [hidden]="!showOptions"></i>
{{ "options" | i18n }}