fixed code engine bugs

This commit is contained in:
paul
2025-03-10 10:37:57 +05:30
parent d1ef2fa3f8
commit 16bfd244e6
7 changed files with 19 additions and 56 deletions

View File

@@ -184,7 +184,7 @@ export const TreeViewCard = memo(({widgetRef, title, isTopLevel}) => {
<Button color="danger" title="delete" onClick={onDelete} size="small" variant="text" danger
icon={<DeleteOutlined />}></Button>
<Button variant="text" type="text" title="hide" onClick={toggleHideShowWidget} size="small"
icon={widgetVisible ? <EyeInvisibleOutlined/> : <EyeOutlined />}></Button>
icon={widgetVisible ? <EyeOutlined /> : <EyeInvisibleOutlined/>}></Button>
</div>
</div>
)