Skip to content

Commit

Permalink
Fixed: Code to get job description in job configuration view(#364trwn)
Browse files Browse the repository at this point in the history
  • Loading branch information
shashwatbangar committed Aug 1, 2022
1 parent 979eae8 commit 1912197
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/components/JobConfiguration.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<ion-item lines="none">
<ion-label class="ion-text-wrap">
<p>{{ getEnumDescription(currentJob.systemJobEnumId) }}</p>
<p>{{ currentJob.description }}</p>
</ion-label>
</ion-item>

Expand Down Expand Up @@ -132,7 +132,6 @@ export default defineComponent({
shopifyConfigId: 'user/getShopifyConfigId',
currentEComStore: 'user/getCurrentEComStore',
currentJob: 'job/getCurrentJob',
getEnumDescription: 'job/getEnumDescription'
}),
generateFrequencyOptions(): any {
const optionDefault = [{
Expand Down
3 changes: 1 addition & 2 deletions src/store/modules/job/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -646,8 +646,7 @@ const actions: ActionTree<JobState, RootState> = {
"jobId": payload?.jobId
} as any,
"viewSize": 1,
"fieldList": ["systemJobEnumId", "runTime", "tempExprId", "parentJobId", "serviceName", "jobId", "jobName", "currentRetryCount", "statusId"],
"entityName": "JobSandbox",
"fieldList": ["systemJobEnumId", "runTime", "tempExprId", "parentJobId", "serviceName", "jobId", "jobName", "currentRetryCount", "statusId", "description"],
"noConditionFind": "Y"
}
resp = await JobService.fetchJobInformation(params);
Expand Down

0 comments on commit 1912197

Please sign in to comment.