Skip to content

Commit cbab032

Browse files
committed
fix typos
1 parent f03d85e commit cbab032

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

chartlets.js/packages/lib/src/plugins/mui/Tabs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import MuiIcon from "@mui/material/Icon";
22
import MuiTabs from "@mui/material/Tabs";
33
import MuiTab from "@mui/material/Tab";
44

5-
import { type ComponentProps, type ComponentState } from "@/index";
5+
import type { ComponentProps, ComponentState } from "@/index";
66
import type { SyntheticEvent } from "react";
77
import { Box } from "@/plugins/mui/Box";
88
import { isString } from "@/utils/isString";

chartlets.py/demo/my_extension/my_panel_8.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def render_panel(
5555
tab2 = Tab(id = "tab2", label="Tab 2", children=[info_text])
5656
tab3 = Tab(id="tab3", label="Tab 3", children=[chart])
5757

58-
tabs = Tabs(id = "tab", value = 0, children=[tab1,tab2,tab3])
58+
tabs = Tabs(id = "tabs", value = 0, children=[tab1,tab2,tab3])
5959

6060
return Box(
6161
style={

0 commit comments

Comments
 (0)