This is an automated email from the ASF dual-hosted git repository.
arshad pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/seatunnel-web.git
The following commit(s) were added to refs/heads/main by this push:
new 72be9252 [Bug] [Seatunnel-web] fix build prod (#241)
72be9252 is described below
commit 72be9252c86b99a07d282d32a91e172d74627610
Author: susanbushisan <[email protected]>
AuthorDate: Mon Dec 9 01:39:53 2024 +0800
[Bug] [Seatunnel-web] fix build prod (#241)
Co-authored-by: susanbushisan <[email protected]>
---
.../src/views/task/synchronization-definition/dag/sidebar/index.tsx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/seatunnel-ui/src/views/task/synchronization-definition/dag/sidebar/index.tsx
b/seatunnel-ui/src/views/task/synchronization-definition/dag/sidebar/index.tsx
index cf05a971..79aff2c3 100644
---
a/seatunnel-ui/src/views/task/synchronization-definition/dag/sidebar/index.tsx
+++
b/seatunnel-ui/src/views/task/synchronization-definition/dag/sidebar/index.tsx
@@ -72,7 +72,7 @@ const DagSidebar = defineComponent({
class="task-item-info ml-auto inline-block"
title={'Drag Source into Canvas and Double Click to Setup
Configurations'}
>
- <InfoCircleOutlined width="17px" height="17px" />
+ <InfoCircleOutlined style={{width:'17px', height:'17px'}} />
</span>
</div>
<div
@@ -88,7 +88,7 @@ const DagSidebar = defineComponent({
class="task-item-info ml-auto inline-block"
title={'Drag Sink into Canvas and Double Click to Setup
Configurations'}
>
- <InfoCircleOutlined width="17px" height="17px" />
+ <InfoCircleOutlined style={{width:'17px', height:'17px'}} />
</span>
</div>
{this.transforms.length > 0 && (
@@ -133,7 +133,7 @@ const DagSidebar = defineComponent({
class="task-item-info ml-auto inline-block"
title={'Drag '+ item.name +' into Canvas and Double Click
to Setup Configurations'}
>
- <InfoCircleOutlined width="17px" height="17px" />
+ <InfoCircleOutlined style={{width:'17px', height:'17px'}}
/>
</span>
</div>
)