Minor UI bug fixes

This commit is contained in:
navaneeth 2021-05-17 14:49:26 +05:30
parent ac3f532008
commit 3ae847a09d

View file

@ -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>