fix ui remove random logs (#2029)
This commit is contained in:
parent
f81fd1f6c0
commit
0bc01c45c6
4 changed files with 0 additions and 5 deletions
|
|
@ -81,7 +81,6 @@ function FilterList(props: Props) {
|
|||
ev.dataTransfer.setData("text/plain", index.toString());
|
||||
setDraggedItem(index);
|
||||
const el = document.getElementById(elId);
|
||||
console.log(el, ev);
|
||||
if (el) {
|
||||
ev.dataTransfer.setDragImage(el, 0, 0);
|
||||
}
|
||||
|
|
@ -90,7 +89,6 @@ function FilterList(props: Props) {
|
|||
const handleDrop = React.useCallback(
|
||||
(event: Record<string, any>) => {
|
||||
event.preventDefault();
|
||||
console.log(draggedInd)
|
||||
if (draggedInd === null) return;
|
||||
const newItems = filters.toArray();
|
||||
const newPosition = calculateNewPosition(
|
||||
|
|
|
|||
|
|
@ -51,7 +51,6 @@ export default class Filter {
|
|||
}
|
||||
|
||||
replaceFilters(filters: any) {
|
||||
console.log(filters, this.filters)
|
||||
this.filters = filters;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -107,7 +107,6 @@ export default class UxtestingStore {
|
|||
...this.instance!,
|
||||
status,
|
||||
};
|
||||
console.log(test);
|
||||
this.updateInstStatus(status);
|
||||
await this.client.updateTest(this.instance.testId!, test);
|
||||
} catch (e) {
|
||||
|
|
|
|||
|
|
@ -35,7 +35,6 @@ export default class CanvasManager extends ListWalker<Timestamp> {
|
|||
private readonly getNode: (id: number) => VElement | undefined
|
||||
) {
|
||||
super();
|
||||
console.log(links);
|
||||
// first we try to grab tar, then fallback to mp4
|
||||
this.loadTar()
|
||||
.then((fileArr) => {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue