Cleanup console.log

This commit is contained in:
Serge Pavlyuk 2024-02-26 00:03:51 +03:00
parent f47e94cf9f
commit a2ed8b8cf3

View file

@ -1368,7 +1368,6 @@
}); });
}, },
replaceRule(old_index,new_index){ replaceRule(old_index,new_index){
console.log(old_index, new_index);
rules = this.templateSettings.routing.rules; rules = this.templateSettings.routing.rules;
if (new_index >= rules.length) rules.push(undefined); if (new_index >= rules.length) rules.push(undefined);
rules.splice(new_index, 0, rules.splice(old_index, 1)[0]); rules.splice(new_index, 0, rules.splice(old_index, 1)[0]);
@ -1379,9 +1378,6 @@
rules.splice(index,1); rules.splice(index,1);
this.routingRuleSettings = JSON.stringify(rules); this.routingRuleSettings = JSON.stringify(rules);
}, },
onRuleDraggingStart(...args) {
console.log(args);
},
showWarp(){ showWarp(){
warpModal.show(); warpModal.show();
} }