We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8783c82 commit 1a04f64Copy full SHA for 1a04f64
packages/app-backend-core/src/index.ts
@@ -166,7 +166,9 @@ async function connect () {
166
const parentId = getComponentId(app, parentUid, ctx)
167
if (isSubscribed(BridgeSubscriptions.COMPONENT_TREE, sub => sub.payload.instanceId === parentId)) {
168
// @TODO take into account current filter
169
- sendComponentTreeData(parentId, null, ctx)
+ requestAnimationFrame(() => {
170
+ sendComponentTreeData(parentId, null, ctx)
171
+ })
172
}
173
174
const id = getComponentId(app, uid, ctx)
0 commit comments