diff --git a/api/functions/graphql/types/tag.js b/api/functions/graphql/types/tag.js index a482073..354487b 100644 --- a/api/functions/graphql/types/tag.js +++ b/api/functions/graphql/types/tag.js @@ -18,6 +18,9 @@ const officialTags = extendType({ type: "Tag", resolve: () => { return prisma.tag.findMany({ + orderBy: { + title: 'asc' + }, where: { isOfficial: true } diff --git a/src/features/Posts/pages/CreatePostPage/Components/ContentEditor/Toolbar.tsx b/src/features/Posts/pages/CreatePostPage/Components/ContentEditor/Toolbar.tsx index ef73d3d..37f6de8 100644 --- a/src/features/Posts/pages/CreatePostPage/Components/ContentEditor/Toolbar.tsx +++ b/src/features/Posts/pages/CreatePostPage/Components/ContentEditor/Toolbar.tsx @@ -22,7 +22,7 @@ export default function Toolbar() { - + {/* */}