diff --git a/src/frontend/config/sidebar/docs.topics.ts b/src/frontend/config/sidebar/docs.topics.ts index e81f9a62..250bb715 100644 --- a/src/frontend/config/sidebar/docs.topics.ts +++ b/src/frontend/config/sidebar/docs.topics.ts @@ -746,6 +746,10 @@ export const docsTopics: StarlightSidebarTopicsUserConfig = { label: 'Configuration', slug: 'app-host/configuration', }, + { + label: 'Polyglot AppHost', + slug: 'app-host/polyglot-apphost', + }, { label: 'Certificate configuration', slug: 'app-host/certificate-configuration', diff --git a/src/frontend/src/components/PivotSelector.astro b/src/frontend/src/components/PivotSelector.astro index ce4836b6..e0af92c4 100644 --- a/src/frontend/src/components/PivotSelector.astro +++ b/src/frontend/src/components/PivotSelector.astro @@ -9,9 +9,10 @@ type Props = { options: Option[]; key: string; title?: string; + marginTop?: number | null; }; -const { options, key, title } = Astro.props; +const { options, key, title, marginTop } = Astro.props; ---