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 9443a45 commit 4262451Copy full SHA for 4262451
src/views/jobManager/selfCodes/selfCodesResultsView.ts
@@ -145,7 +145,7 @@ export class selfCodesResultsView implements TreeDataProvider<any> {
145
146
try {
147
const result = await selected.job.query<SelfCodeNode>(content).execute(10000);
148
- if (result.success) {
+ if (result.success && result.data) {
149
const data: SelfCodeNode[] = result.data.map((row) => ({
150
...row,
151
INITIAL_STACK: JSON.parse(row.INITIAL_STACK as unknown as string)
0 commit comments