Skip to content
Merged
Changes from all commits
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
14 changes: 7 additions & 7 deletions website/screens/components/quick-nav/code/QuickNavCodePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ const sections = [
<TableCode>{"{ label: string; links?: Link[]; }[]"}</TableCode>
</td>
<td>
Links of the quick nav component. Each link has the following
properties:
Links of the quick nav component. Only first and second level
links will be shown in the quick nav, due to design restrictions.
Each link has the following properties:
<ul>
<li>
<b>label</b>: Text to be shown in the link. The
content must be wrapped with an id equals to the slugified
label (in lower case and the white spaces replaced by
&#39;-&#39;) in order to be able to navigate to the section
that the label references.
<b>label</b>: Text to be shown in the link. The content must
be wrapped with an id equal to the slugified label (in lower
case and the white spaces replaced by &#39;-&#39;) in order to
be able to navigate to the section that the label references.
</li>
<li>
<b>links</b>: Sublinks of the link.
Expand Down