chore: cleanup edge and node code
All checks were successful
Deploy to GitHub Pages / build_site (push) Successful in 2m8s

This commit is contained in:
2025-12-02 16:59:43 +01:00
parent 4878d02705
commit ca8b1e15ac
2 changed files with 8 additions and 13 deletions

View File

@@ -10,7 +10,6 @@
import { colors } from "../graph/colors.svelte";
import { appSettings } from "$lib/settings/app-settings.svelte";
const graph = getGraphManager();
const graphState = getGraphState();
type Props = {
@@ -37,14 +36,11 @@
const height = graphState.getNodeHeight(node.type);
$effect(() => {
if (!node?.tmp) node.tmp = {};
node.tmp.mesh = meshRef;
});
onMount(() => {
if (!node.tmp) node.tmp = {};
node.tmp.mesh = meshRef;
graphState.updateNodePosition(node);
if (meshRef && !node.tmp?.mesh) {
node.tmp.mesh = meshRef;
graphState.updateNodePosition(node);
}
});
</script>