Merge 52e0312548f1543c3ce27bcbbdca45870f32c0c4 into 32ec711767401c93605b7631f03eee47dea1cada

This commit is contained in:
Aaron Pham 2025-02-05 19:58:05 +08:00 committed by GitHub
commit 54892bbd1a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -370,9 +370,9 @@ async function renderGraph(container: string, fullSlug: FullSlug) {
const stage = app.stage const stage = app.stage
stage.interactive = false stage.interactive = false
const labelsContainer = new Container<Text>({ zIndex: 3 }) const labelsContainer = new Container<Text>({ zIndex: 3, isRenderGroup: true })
const nodesContainer = new Container<Graphics>({ zIndex: 2 }) const nodesContainer = new Container<Graphics>({ zIndex: 2, isRenderGroup: true })
const linkContainer = new Container<Graphics>({ zIndex: 1 }) const linkContainer = new Container<Graphics>({ zIndex: 1, isRenderGroup: true })
stage.addChild(nodesContainer, labelsContainer, linkContainer) stage.addChild(nodesContainer, labelsContainer, linkContainer)
for (const n of graphData.nodes) { for (const n of graphData.nodes) {