Skip to content

Commit f38bdbe

Browse files
authored
Docs - fix deploy (#3645)
* fix for docs deploy * bump version
1 parent d1fce6e commit f38bdbe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docuilib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "uilib-docs",
3-
"version": "3.15.0",
3+
"version": "3.16.0",
44
"main": "./src/index.ts",
55
"scripts": {
66
"docusaurus": "docusaurus",

docuilib/src/components/ComponentPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export default function ComponentPage({component}) {
6464
const tabsArray = !_.isEmpty(api) ? [...tabs, devTab] : tabs;
6565

6666
// TODO: align Tabs bottom border with TabItem's selected indication line
67-
if (tabs) {
67+
if (!_.isEmpty(tabsArray)) {
6868
return <Tabs queryString="tab" className="main-tabs">{getTabItems(tabsArray)}</Tabs>;
6969
}
7070
};

0 commit comments

Comments
 (0)