Skip to content

Commit

Permalink
Merge pull request #207 from shashwatbangar/#364trwn
Browse files Browse the repository at this point in the history
Implemented: Added enum description to job config component(#364trwn)
  • Loading branch information
adityasharma7 authored Aug 2, 2022
2 parents de7d790 + 46d997e commit 9325b2f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions src/components/JobConfiguration.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@

<ion-list>

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

<ion-item>
<ion-icon slot="start" :icon="timeOutline" />
<ion-label class="ion-text-wrap">{{ $t("Run time") }}</ion-label>
Expand Down
2 changes: 1 addition & 1 deletion src/store/modules/job/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ const actions: ActionTree<JobState, RootState> = {
"jobId": payload?.jobId
} as any,
"viewSize": 1,
"fieldList": ["systemJobEnumId", "runTime", "tempExprId", "parentJobId", "serviceName", "jobId", "jobName", "currentRetryCount", "statusId"],
"fieldList": ["systemJobEnumId", "runTime", "tempExprId", "parentJobId", "serviceName", "jobId", "jobName", "currentRetryCount", "statusId", "description"],
"noConditionFind": "Y"
}
resp = await JobService.fetchJobInformation(params);
Expand Down

0 comments on commit 9325b2f

Please sign in to comment.