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 b3504e0 commit 263b8f0Copy full SHA for 263b8f0
libs/services/designer-client-services/src/lib/standard/run.ts
@@ -263,7 +263,7 @@ export class StandardRunService implements IRunService {
263
: response;
264
265
return Object.keys(dictionaryResponse).reduce((prev, current) => {
266
- return { ...prev, [current]: { displayName: current, value: dictionaryResponse[current].content ?? dictionaryResponse[current] } };
+ return { ...prev, [current]: { displayName: current, value: dictionaryResponse[current]?.content ?? dictionaryResponse[current] } };
267
}, {});
268
}
269
0 commit comments