We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45aa8f2 commit 87ccc79Copy full SHA for 87ccc79
scripts/docs/buildDocsCommon.js
@@ -70,8 +70,9 @@ function processComponents(components) {
70
if (isParentComponent) {
71
content += 'sidebar_position: 1\n';
72
}
73
+ const title = component.docs?.hero ? '""' : `${isIncubatorComponent ? 'Incubator.' : ''}${component.name}`;
74
content += `id: ${component.name}\n`;
- content += `title: ${isIncubatorComponent ? 'Incubator.' : ''}${component.name}\n`;
75
+ content += `title: ${title}\n`;
76
content += `sidebar_label: ${componentName}\n`;
77
content += '---\n\n';
78
0 commit comments