mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 08:58:26 +00:00
Minor UI bug fixes
This commit is contained in:
parent
ac3f532008
commit
3ae847a09d
1 changed files with 3 additions and 3 deletions
|
|
@ -7,9 +7,9 @@ export const ConfigHandle = function ConfigHandle({
|
|||
dragRef
|
||||
}) {
|
||||
|
||||
return <div className="config-handle" ref={dragRef}>
|
||||
<span onClick={(e) => { e.preventDefault(); configHandleClicked(id, component) }} className="badge badge bg-azure-lt" role="button">
|
||||
<img src="https://www.svgrepo.com/show/83981/menu.svg" width="8" height="8" style={{marginRight: '5px'}}/>
|
||||
return <div className="config-handle" ref={dragRef}>
|
||||
<span style={{cursor: 'move'}} onClick={(e) => { e.preventDefault(); configHandleClicked(id, component) }} className="badge badge bg-azure-lt" role="button">
|
||||
<img style={{cursor: 'pointer'}} src="https://www.svgrepo.com/show/83981/menu.svg" width="8" height="8" style={{marginRight: '5px'}}/>
|
||||
{component.name}
|
||||
</span>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue