diff --git a/genie-web/src/main/resources/static/scripts/Job.js b/genie-web/src/main/resources/static/scripts/Job.js index 7ae1cd5a130..a692e236eab 100644 --- a/genie-web/src/main/resources/static/scripts/Job.js +++ b/genie-web/src/main/resources/static/scripts/Job.js @@ -46,7 +46,7 @@ export default class Job extends Page { name : 'sort', value : '', type : 'select', - selectFields: ['user', 'created', 'id', 'name', 'status', 'clusterName', 'cluserId'].map(field => ( + selectFields: ['user', 'id', 'name', 'status', 'clusterName', 'cluserId', 'started', 'finished'].map(field => ( { value: field, label: field, diff --git a/genie-web/src/main/resources/static/scripts/components/JobDetails.js b/genie-web/src/main/resources/static/scripts/components/JobDetails.js index da313861021..45c02501782 100644 --- a/genie-web/src/main/resources/static/scripts/components/JobDetails.js +++ b/genie-web/src/main/resources/static/scripts/components/JobDetails.js @@ -104,7 +104,7 @@ export default class JobDetails extends React.Component { - {this.state.job.status === 'RUNNING' && !this.state.killJobRequestSent ? + {(this.state.job.status === 'RUNNING' || this.state.job.status === 'INIT') && !this.state.killJobRequestSent ?