mirror of
https://github.com/drawdb-io/drawdb.git
synced 2025-10-13 22:10:49 +00:00
Remove console
This commit is contained in:
@@ -24,7 +24,6 @@ export default function TableInfo({ data }) {
|
||||
const [editField, setEditField] = useState({});
|
||||
const draggingElementIndex = useRef();
|
||||
const isDragging = useRef();
|
||||
console.log(isDragging.current);
|
||||
|
||||
return (
|
||||
<div>
|
||||
@@ -63,7 +62,6 @@ export default function TableInfo({ data }) {
|
||||
onDragOver={(e) => {
|
||||
e.preventDefault();
|
||||
if (isDragging.current) return;
|
||||
console.log("dragging over...");
|
||||
isDragging.current = true;
|
||||
draggingElementIndex.current = j;
|
||||
}}
|
||||
|
Reference in New Issue
Block a user