Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Documentation icon to blue, move to last position, and add hor…
…izontal lines between CLI sections

Co-Authored-By: Francisco Javier Arceo <arceofrancisco@gmail.com>
  • Loading branch information
commit 6e76befd8e6893d23e311aebfb6c826b61b2c2d2
18 changes: 9 additions & 9 deletions ui/src/pages/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,15 +131,6 @@ const SideNav = () => {
renderItem: (props) => <Link {...props} to={`${baseUrl}/data-set`} />,
isSelected: useMatchSubpath(`${baseUrl}/data-set`),
},
{
name: "Documentation",
id: htmlIdGenerator("documentation")(),
icon: <EuiIcon type="documentation" />,
renderItem: (props) => (
<Link {...props} to={`${baseUrl}/documentation`} />
),
isSelected: useMatchSubpath(`${baseUrl}/documentation`),
},
{
name: "Permissions",
id: htmlIdGenerator("permissions")(),
Expand All @@ -149,6 +140,15 @@ const SideNav = () => {
),
isSelected: useMatchSubpath(`${baseUrl}/permissions`),
},
{
name: "Documentation",
id: htmlIdGenerator("documentation")(),
icon: <EuiIcon type="documentation" color="primary" />,
renderItem: (props) => (
<Link {...props} to={`${baseUrl}/documentation`} />
),
isSelected: useMatchSubpath(`${baseUrl}/documentation`),
},
],
},
];
Expand Down
6 changes: 6 additions & 0 deletions ui/src/services/DocumentationService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ feast apply

- \`--skip-source-validation\`: Skip validation of data sources.

---

## feast materialize

Materialize features from an offline store into an online store.
Expand All @@ -32,6 +34,8 @@ feast materialize START_TS END_TS

- \`--views\`: Feature views to materialize.

---

## feast registry-dump

Dump registry contents to local file.
Expand All @@ -42,6 +46,8 @@ Dump registry contents to local file.
feast registry-dump REGISTRY_PATH
\`\`\`

---

## feast serve

Start a feature server.
Expand Down