Skip to content

Commit

Permalink
feat: add header comment and renumber the variant ids in help page
Browse files Browse the repository at this point in the history
  • Loading branch information
Meng-20 committed Sep 10, 2024
1 parent 4b44742 commit 01461ea
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions webui/src/components/Help/Help.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- Copyright (c) 2024 Seagate Technology LLC and/or its Affiliates -->
<template>
<v-container>
<h2>CFM Help Center</h2>
Expand Down Expand Up @@ -48,22 +49,22 @@ export default {
return {
variants: [
{
id: 1,
id: 0,
title: "WebUI User Guide",
content:
"For instructions on our product, please refer to the CFM User Guide.",
url: "https://github.com/Seagate/cfm/wiki/WebUI-User-Guide",
icon: "mdi-book-open-page-variant",
},
{
id: 2,
id: 1,
title: "CFM GitHub Repository",
content: "For more details, please visit our GitHub repository",
url: "https://github.com/Seagate/cfm",
icon: "mdi-github",
},
{
id: 3,
id: 2,
title: "Trouble Shooting",
content:
"For solutions to common issues, please see our GitHub wiki page.",
Expand Down

0 comments on commit 01461ea

Please sign in to comment.