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 ef5e5ff commit 33e596bCopy full SHA for 33e596b
packages/app-backend-core/src/app.ts
@@ -153,7 +153,7 @@ export function getAppRecordId (app, defaultId?: string): string {
153
}
154
155
export async function getAppRecord (app: any, ctx: BackendContext): Promise<AppRecord> {
156
- const record = ctx.appRecords.find(ar => ar.options.app === app)
+ const record = app.__VUE_DEVTOOLS_APP_RECORD__ ?? ctx.appRecords.find(ar => ar.options.app === app)
157
if (record) {
158
return record
159
0 commit comments