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 d1fce6e commit f38bdbeCopy full SHA for f38bdbe
docuilib/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "uilib-docs",
3
- "version": "3.15.0",
+ "version": "3.16.0",
4
"main": "./src/index.ts",
5
"scripts": {
6
"docusaurus": "docusaurus",
docuilib/src/components/ComponentPage.tsx
@@ -64,7 +64,7 @@ export default function ComponentPage({component}) {
64
const tabsArray = !_.isEmpty(api) ? [...tabs, devTab] : tabs;
65
66
// TODO: align Tabs bottom border with TabItem's selected indication line
67
- if (tabs) {
+ if (!_.isEmpty(tabsArray)) {
68
return <Tabs queryString="tab" className="main-tabs">{getTabItems(tabsArray)}</Tabs>;
69
}
70
};
0 commit comments