Flip boolean config

Signed-off-by: Gabriel Dugny <gabriel.dugny@believe.com>
This commit is contained in:
Gabriel Dugny
2026-02-10 23:59:40 +01:00
parent 7291529eb5
commit c47f3d8a73
5 changed files with 14 additions and 20 deletions
+3 -3
View File
@@ -2,7 +2,7 @@
'@backstage/plugin-techdocs': minor
---
Add two config values to the `page:techdocs/reader` extension that configure default layout, `withSearch` and `withHeader`. Default are unchanged to `true`.
Add two config values to the `page:techdocs/reader` extension that configure default layout, `withoutSearch` and `withoutHeader`. Default are unchanged to `false`.
E.g. to disable the search and header on the Techdocs Reader Page:
@@ -11,6 +11,6 @@ app:
extensions:
- page:techdocs/reader:
config:
withSearch: false
withHeader: false
withoutSearch: true
withoutHeader: true
```