@valtimo/plugin 13.16.0 → 13.17.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8093,9 +8093,11 @@ class VerzoekConfigurationComponent {
8093
8093
  }))));
8094
8094
  this.processSelectItems$ = this.processService
8095
8095
  .getProcessDefinitions()
8096
- .pipe(map$1(processDefinitions => processDefinitions.map(processDefinition => ({
8096
+ .pipe(map$1(processDefinitions => processDefinitions
8097
+ .filter(processDefinitions => !!processDefinitions?.key)
8098
+ .map(processDefinition => ({
8097
8099
  id: processDefinition.key,
8098
- text: processDefinition.name ?? '',
8100
+ text: processDefinition.name ?? `<${processDefinition.key}>`,
8099
8101
  }))));
8100
8102
  this.caseSelectItems$ = this.verzoekPluginService
8101
8103
  .getCaseDefinitions({ active: true })