rez_core 5.0.306 → 5.0.309
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.
- package/dist/module/meta/service/resolver.service.js +1 -1
- package/dist/module/meta/service/resolver.service.js.map +1 -1
- package/dist/module/workflow-automation/service/schedule-handler.service.js +1 -1
- package/dist/module/workflow-automation/service/schedule-handler.service.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/module/meta/service/resolver.service.ts +1 -1
- package/src/module/workflow-automation/service/schedule-handler.service.ts +1 -1
package/package.json
CHANGED
|
@@ -73,7 +73,7 @@ export class ResolverService {
|
|
|
73
73
|
const item = options.find(
|
|
74
74
|
(opt) => opt.value == code || opt.code == code,
|
|
75
75
|
);
|
|
76
|
-
resolvedValues.push(item?.
|
|
76
|
+
resolvedValues.push(item?.label ?? code);
|
|
77
77
|
}
|
|
78
78
|
// make resolved values to a comma separated string
|
|
79
79
|
resolvedEntityData[field] = resolvedValues.join(', ');
|
|
@@ -38,7 +38,7 @@ export class ScheduleHandlerService {
|
|
|
38
38
|
? JSON.parse(workflow.schedule)
|
|
39
39
|
: workflow.schedule;
|
|
40
40
|
|
|
41
|
-
const entityType = workflow.
|
|
41
|
+
const entityType = workflow.mapped_entity_type;
|
|
42
42
|
|
|
43
43
|
// 2️⃣ Get table name from frm_entity_master
|
|
44
44
|
const entity = await this.entityMasterRepository.findOne({
|