diff --git a/.github/assets/netlify.svg b/.github/assets/netlify.svg new file mode 100644 index 000000000..7563fdceb --- /dev/null +++ b/.github/assets/netlify.svg @@ -0,0 +1 @@ + diff --git a/.github/assets/sentry.svg b/.github/assets/sentry.svg new file mode 100644 index 000000000..c43dddfdd --- /dev/null +++ b/.github/assets/sentry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/src/components/LeftSidebar/LeftSidebar.astro b/docs/src/components/LeftSidebar/LeftSidebar.astro index 1960dbb04..fb8484322 100644 --- a/docs/src/components/LeftSidebar/LeftSidebar.astro +++ b/docs/src/components/LeftSidebar/LeftSidebar.astro @@ -6,7 +6,7 @@ const {currentPage} = Astro.props; // Get the slug w/o a leading or trailing slash const currentPageMatch = removeLeadingSlash(removeTrailingSlash(currentPage)); const langCode = getLanguageFromURL(currentPage); -// SIDEBAR is a flat array. Group it by sections to properly render. +// SIDEBAR is a flat array. Group it by sections to properly render. const sidebarSections = SIDEBAR[langCode].reduce((col, item) => { if (item.header) { col.push({...item, children: []}); @@ -19,7 +19,26 @@ const sidebarSections = SIDEBAR[langCode].reduce((col, item) => { ---