Skip to content

Commit

Permalink
Merge pull request #208 from shashwatbangar/#2np1py0
Browse files Browse the repository at this point in the history
Fixed: Removed code which passes entityName for the calls done in findJobs API(#2np1py0)
  • Loading branch information
adityasharma7 authored Aug 2, 2022
2 parents 3e3956e + cd04479 commit de7d790
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion src/components/JobHistoryModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ export default defineComponent({
"systemJobEnumId": this.currentJob?.systemJobEnumId
},
"fieldList": [ "runTime", "statusId" ],
"entityName": "JobSandbox",
"noConditionFind": "Y",
"viewSize": process.env.VUE_APP_VIEW_SIZE,
"orderBy": "runTime DESC"
Expand Down
5 changes: 0 additions & 5 deletions src/store/modules/job/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ const actions: ActionTree<JobState, RootState> = {
"systemJobEnumId_op": "not-empty"
} as any,
"fieldList": [ "systemJobEnumId", "runTime", "tempExprId", "parentJobId", "serviceName", "jobId", "jobName", "statusId", "cancelDateTime", "finishDateTime", "startDateTime" ],
"entityName": "JobSandbox",
"noConditionFind": "Y",
"viewSize": payload.viewSize,
"viewIndex": payload.viewIndex,
Expand Down Expand Up @@ -121,7 +120,6 @@ const actions: ActionTree<JobState, RootState> = {
"statusId_fld1_grp": "2",
} as any,
"fieldList": [ "systemJobEnumId", "runTime", "tempExprId", "parentJobId", "serviceName", "jobId", "jobName", "statusId" ],
"entityName": "JobSandbox",
"noConditionFind": "Y",
"viewSize": payload.viewSize,
"viewIndex": payload.viewIndex,
Expand Down Expand Up @@ -190,7 +188,6 @@ const actions: ActionTree<JobState, RootState> = {
"systemJobEnumId_op": "not-empty"
} as any,
"fieldList": [ "systemJobEnumId", "runTime", "tempExprId", "parentJobId", "serviceName", "jobId", "jobName", "currentRetryCount", "statusId" ],
"entityName": "JobSandbox",
"noConditionFind": "Y",
"viewSize": payload.viewSize,
"viewIndex": payload.viewIndex,
Expand Down Expand Up @@ -290,7 +287,6 @@ const actions: ActionTree<JobState, RootState> = {
"productStoreId_fld0_grp": "2",
...payload.inputFields
},
"entityName": "JobSandbox",
"noConditionFind": "Y",
"viewSize": (payload.inputFields?.systemJobEnumId?.length * 3)
} as any
Expand Down Expand Up @@ -647,7 +643,6 @@ const actions: ActionTree<JobState, RootState> = {
} as any,
"viewSize": 1,
"fieldList": ["systemJobEnumId", "runTime", "tempExprId", "parentJobId", "serviceName", "jobId", "jobName", "currentRetryCount", "statusId"],
"entityName": "JobSandbox",
"noConditionFind": "Y"
}
resp = await JobService.fetchJobInformation(params);
Expand Down

0 comments on commit de7d790

Please sign in to comment.