We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c68c14d commit 515a62fCopy full SHA for 515a62f
.changeset/smart-candles-dress.md
@@ -0,0 +1,5 @@
1
+---
2
+'@shopify/polaris': minor
3
4
+
5
+Fixed list reset class from not applying to ordered lists
polaris-react/src/components/AlphaStack/AlphaStack.tsx
@@ -45,7 +45,7 @@ export const AlphaStack = ({
45
}: AlphaStackProps) => {
46
const className = classNames(
47
styles.AlphaStack,
48
- as === 'ul' && styles.listReset,
+ (as === 'ul' || as === 'ol') && styles.listReset,
49
as === 'fieldset' && styles.fieldsetReset,
50
);
51
0 commit comments