minor change

This commit is contained in:
Daniel 2023-05-26 05:51:35 +03:30
parent 2717e45253
commit ffecdf21a0

View File

@ -130,7 +130,9 @@ export default function ({ className }: { className?: string }) {
<p className="text-sm p-2">Tags</p>
</div>
<div>
{tags.map((e, i) => {
{tags
.sort((a, b) => a.name.localeCompare(b.name))
.map((e, i) => {
return (
<SidebarItem
key={i}