Thanks to visit codestin.com Credit goes to github.com
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 e657681 commit ed9f884Copy full SHA for ed9f884
src/client/editor/Editor.tsx
@@ -130,7 +130,9 @@ export const Editor: FC<EditorProps> = ({
130
<DropdownMenuPortal>
131
<DropdownMenuContent>
132
{Object.entries(examples)
133
- .sort()
+ .sort(([_slugA, titleA], [_slugB, titleB]) => {
134
+ return titleA.localeCompare(titleB)
135
+ })
136
.map(([slug, title]) => {
137
const href = `${window.location.origin}/parameters/example/${slug}`;
138
return (
0 commit comments