We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0e906c commit b954f66Copy full SHA for b954f66
packages/app-backend-core/src/app.ts
@@ -97,16 +97,16 @@ async function createAppRecord (options: AppRecordOptions, backend: DevtoolsBack
97
appRecord: mapAppRecord(record),
98
})
99
100
+ // Auto select first app
101
+ if (ctx.currentAppRecord == null) {
102
+ await selectApp(record, ctx)
103
+ }
104
+
105
if (appRecordPromises.has(options.app)) {
106
for (const r of appRecordPromises.get(options.app)) {
107
await r(record)
108
}
109
-
- // Auto select first app
- if (ctx.currentAppRecord == null) {
- await selectApp(record, ctx)
- }
110
} else if (SharedData.debugInfo) {
111
console.warn('[Vue devtools] No root instance found for app, it might have been unmounted', options.app)
112
0 commit comments