mirror of
https://codeberg.org/uzu/strudel
synced 2026-09-05 14:58:03 -04:00
hide superdirt controls
This commit is contained in:
@@ -24,7 +24,10 @@ let currentPageMatch = currentPage.slice(BASE_URL.length, currentPage.endsWith('
|
||||
<ul>
|
||||
{
|
||||
docs
|
||||
.filter(({ tags }) => !tags?.find((t) => t.title === 'noautocomplete'))
|
||||
.filter(
|
||||
({ tags }) =>
|
||||
!tags?.find((t) => t.title === 'noautocomplete') && !tags?.find((t) => t.title === 'superdirtonly'),
|
||||
)
|
||||
.filter(({ name, description }) => name && !name.startsWith('_') && !!description)
|
||||
// @ts-ignore
|
||||
.sort((a, b) => a.name.localeCompare(b.name))
|
||||
|
||||
Reference in New Issue
Block a user