[READ-ONLY] Mirror of https://github.com/flo-bit/tiny-docs. quick setup, simple, minimalistic docs for your github project flo-bit.dev/tiny-docs/
0

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #12 from flo-bit/main

disable search when only one page

author
Florian
committer
GitHub
date (Oct 28, 2025, 2:19 PM +0100) commit 56da14f5 parent 08c676a8
+1 -1
+1 -1
src/components/Header.astro
··· 45 45 46 46 <div class="flex gap-x-8 items-center z-10"> 47 47 <div class="flex gap-x-4 items-center"> 48 - {config.SEARCH_ENABLED ? <Search client:visible /> : null} 48 + {config.SEARCH_ENABLED && sidebar ? <Search client:visible /> : null} 49 49 50 50 {config.SHOW_THEME_TOGGLE ? <ThemeToggle /> : null} 51 51 </div>