Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Commit

Permalink
Remove step number indicator from buttons ¯\_(ツ)_/¯
Browse files Browse the repository at this point in the history
  • Loading branch information
mikejolley committed Dec 21, 2021
1 parent d51aad8 commit 23a8669
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/js/base/components/quantity-selector/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ const QuantitySelector = ( {
normalizeQuantity( newQuantity );
} }
>
{ step === 1 || quantity < step ? `-` : quantity - step }
&#65293;
</button>
<button
aria-label={ __(
Expand All @@ -220,7 +220,7 @@ const QuantitySelector = ( {
normalizeQuantity( newQuantity );
} }
>
{ step === 1 ? '+' : quantity + step }
&#65291;
</button>
</div>
);
Expand Down

0 comments on commit 23a8669

Please sign in to comment.