1
0
mirror of https://github.com/robonen/eulerian-cycle.git synced 2026-03-20 10:54:46 +00:00

Fixed graph checking

This commit is contained in:
2021-12-16 15:30:54 +07:00
parent 24abf2c840
commit 0aabb2bac9

View File

@@ -262,6 +262,7 @@ export default {
const removeLink = (id) => { const removeLink = (id) => {
links.value = links.value.filter((_, idx) => idx !== id); links.value = links.value.filter((_, idx) => idx !== id);
checkGraph();
}; };
return { return {