[Accessibility] Fix "toogle" typo in class names (#48700)
* Fix "toogle" typo in class names * Add changelog file --------- Co-authored-by: Daniel W. Robert <danielwrobert@users.noreply.github.com>
This commit is contained in:
parent
099d0a63a0
commit
a66d2f8dff
|
@ -0,0 +1,4 @@
|
|||
Significance: minor
|
||||
Type: tweak
|
||||
|
||||
Fix toogle typo in class names
|
|
@ -33,7 +33,7 @@ export function DownloadsMenu( {
|
|||
icon={ isOpen ? chevronUp : chevronDown }
|
||||
variant="secondary"
|
||||
onClick={ onToggle }
|
||||
className="woocommerce-downloads-menu__toogle"
|
||||
className="woocommerce-downloads-menu__toggle"
|
||||
>
|
||||
<span>{ __( 'Add new', 'woocommerce' ) }</span>
|
||||
</Button>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
.woocommerce-downloads-menu {
|
||||
&__toogle {
|
||||
&__toggle {
|
||||
flex-direction: row-reverse;
|
||||
|
||||
> span {
|
||||
|
|
|
@ -162,7 +162,7 @@
|
|||
gap: $gap-smaller;
|
||||
margin-right: $gap-smallest;
|
||||
|
||||
.variations-actions-menu__toogle:disabled {
|
||||
.variations-actions-menu__toggle:disabled {
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ export function MultipleUpdateMenu( {
|
|||
icon={ isOpen ? chevronUp : chevronDown }
|
||||
variant="secondary"
|
||||
onClick={ onToggle }
|
||||
className="variations-actions-menu__toogle"
|
||||
className="variations-actions-menu__toggle"
|
||||
>
|
||||
<span>{ __( 'Quick update', 'woocommerce' ) }</span>
|
||||
</Button>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
.variations-actions-menu {
|
||||
&__toogle {
|
||||
&__toggle {
|
||||
flex-direction: row-reverse;
|
||||
|
||||
> span {
|
||||
|
|
Loading…
Reference in New Issue