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 6239f66 commit a325988Copy full SHA for a325988
components/icon/stories/template.js
@@ -171,9 +171,9 @@ export const FullIconSetTemplate = (args, context) => {
171
})}
172
>
173
${when(args.setName === "workflow", () => {
174
- return workflowIconsCleaned.sort().map((iconName) => IconWithLabelTemplate({ ...args, iconName }, context));
+ return workflowIconsCleaned.map((iconName) => IconWithLabelTemplate({ ...args, iconName }, context));
175
}, () => {
176
- return uiIconsWithDirections.sort().map((iconName) => IconWithLabelTemplate({ ...args, uiIconName: iconName }, context));
+ return uiIconsWithDirections.map((iconName) => IconWithLabelTemplate({ ...args, uiIconName: iconName }, context));
177
178
</div>
179
`;
0 commit comments