From acfc504f129723539278c30f934bde838290b0dc Mon Sep 17 00:00:00 2001 From: Sutu Sebastian <41998826+SutuSebastian@users.noreply.github.com> Date: Tue, 28 Nov 2023 09:22:31 +0200 Subject: [PATCH] docs sidebar (typography): add missing `List` link (#1154) docs sidebar (typography): add missing list link Co-authored-by: Sebastian Sutu --- data/docs-sidebar.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/data/docs-sidebar.ts b/data/docs-sidebar.ts index 939c65422..38e99c2bb 100644 --- a/data/docs-sidebar.ts +++ b/data/docs-sidebar.ts @@ -79,6 +79,9 @@ export const DOCS_SIDEBAR: DocsSidebarSection[] = [ { title: 'typography', href: '/typography/', - items: [{ title: 'Blockquote', href: '/docs/typography/blockquote', isNew: true }], + items: [ + { title: 'Blockquote', href: '/docs/typography/blockquote', isNew: true }, + { title: 'List', href: '/docs/typography/list', isNew: true }, + ], }, ];