Add canceled status filter to automation sessions list
This commit is contained in:
@@ -139,7 +139,7 @@ export default {
|
||||
// Use null not undefined!
|
||||
sessionID: null,
|
||||
workflowID: null,
|
||||
status: null,
|
||||
status: 0,
|
||||
completed: 1,
|
||||
},
|
||||
|
||||
@@ -183,11 +183,11 @@ export default {
|
||||
computed: {
|
||||
statusOptions () {
|
||||
return [
|
||||
{ value: null, text: this.$t('filterForm.all.label') },
|
||||
{ value: 0, text: this.$t('filterForm.started.label') },
|
||||
{ value: 1, text: this.$t('filterForm.prompted.label') },
|
||||
{ value: 2, text: this.$t('filterForm.suspended.label') },
|
||||
{ value: 3, text: this.$t('filterForm.failed.label') },
|
||||
{ value: 5, text: this.$t('filterForm.canceled.label') },
|
||||
{ value: 4, text: this.$t('filterForm.completed.label') },
|
||||
]
|
||||
},
|
||||
|
||||
@@ -48,6 +48,8 @@ list:
|
||||
label: Started
|
||||
suspended:
|
||||
label: Suspended
|
||||
canceled:
|
||||
label: Canceled
|
||||
loading: Loading sessions
|
||||
numFound: '{{count}} session found'
|
||||
numFound_plural: '{{count}} sessions found'
|
||||
|
||||
Reference in New Issue
Block a user