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 2a40f34 commit 9ac7e43Copy full SHA for 9ac7e43
docuilib/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "uilib-docs",
3
- "version": "3.7.0",
+ "version": "3.8.0",
4
"main": "./src/index.ts",
5
"scripts": {
6
"docusaurus": "docusaurus",
docuilib/src/components/ComponentPage.tsx
@@ -61,7 +61,7 @@ export default function ComponentPage({component}) {
61
const buildTabs = () => {
62
const tabs = component.docs?.tabs;
63
const api = component.props;
64
- const tabsArray = api ? [...tabs, devTab] : tabs;
+ const tabsArray = !_.isEmpty(api) ? [...tabs, devTab] : tabs;
65
66
// TODO: align Tabs bottom border with TabItem's selected indication line
67
if (tabs) {
0 commit comments