From 2c985396cd8a55a1dea135f8bb7497dc39d28328 Mon Sep 17 00:00:00 2001 From: Harri Lehtola Date: Tue, 4 Feb 2025 23:00:57 +0200 Subject: [PATCH] docs: Use proper subheadings for all sections in UI documentation Also use consistent Title Case, at least for these subheadings. Signed-off-by: Harri Lehtola --- docs/reference/alpha-web-ui.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/reference/alpha-web-ui.md b/docs/reference/alpha-web-ui.md index 29c454d812..e2136536bf 100644 --- a/docs/reference/alpha-web-ui.md +++ b/docs/reference/alpha-web-ui.md @@ -100,7 +100,7 @@ yarn start The advantage of importing Feast UI as a module is in the ease of customization. The `` component exposes a `feastUIConfigs` prop thorough which you can customize the UI. Currently it supports a few parameters. -**Fetching the Project List** +##### Fetching the Project List You can use `projectListPromise` to provide a promise that overrides where the Feast UI fetches the project list from. @@ -118,7 +118,7 @@ You can use `projectListPromise` to provide a promise that overrides where the F /> ``` -**Custom Tabs** +##### Custom Tabs You can add custom tabs for any of the core Feast objects through the `tabsRegistry`. @@ -142,7 +142,7 @@ const tabsRegistry = { Examples of custom tabs can be found in the `ui/custom-tabs` folder. -**Custom basename** +##### Custom Basename If you want to serve the UI under a specific URL path instead of at the root, you can use the `basename` prop, and it will be forwarded to React Router.