This is an automated email from the ASF dual-hosted git repository.
mgubaidullin pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-karavan.git
The following commit(s) were added to refs/heads/main by this push:
new ab94e44e Fix MainPropertiesPanel
ab94e44e is described below
commit ab94e44e3e3defbebc9fa55fddce18ee589fa442
Author: Marat Gubaidullin <[email protected]>
AuthorDate: Fri Aug 28 10:52:13 2026 -0400
Fix MainPropertiesPanel
---
.../src/main/webui/src/ui/designer/property/MainPropertiesPanel.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/karavan-app/src/main/webui/src/ui/designer/property/MainPropertiesPanel.tsx
b/karavan-app/src/main/webui/src/ui/designer/property/MainPropertiesPanel.tsx
index 2c40f4f3..75848aa1 100644
---
a/karavan-app/src/main/webui/src/ui/designer/property/MainPropertiesPanel.tsx
+++
b/karavan-app/src/main/webui/src/ui/designer/property/MainPropertiesPanel.tsx
@@ -7,7 +7,7 @@ import {DslProperties} from "./DslProperties";
export function MainPropertiesPanel() {
- const [activeTabKey, setActiveTabKey] = React.useState<string | number>();
+ const [activeTabKey, setActiveTabKey] = React.useState<string |
number>('properties');
const handleTabClick = (event: React.MouseEvent<any> | React.KeyboardEvent
| MouseEvent, tabIndex: string | number) => {
setActiveTabKey(tabIndex);
};