diff --git a/client/components/GenericTable.vue b/client/components/GenericTable.vue index b1229d1436eb935b1e11a19a24e671b145b3a7fc..c6783f82f757602d94f6725661a73636f174421d 100644 --- a/client/components/GenericTable.vue +++ b/client/components/GenericTable.vue @@ -85,8 +85,8 @@ :state="value.state" ></analysis-state> </template> - <template #[`item.workflow_invocation_status`]="{ value }"> - <InvocationState v-if="value" :state="value"></InvocationState> + <template #[`item.status`]="{ value }"> + <invocation-state :state="value"></invocation-state> </template> <template #[`item.categories`]="{ value }"> <PhenotypeCategoriesChips diff --git a/client/pages/analysis.vue b/client/pages/analysis.vue index 07cd02edd2d3a3ad6c6b0ecdc1282d4fde5a75de..baeaeeb5b24b7e87449ded71bb51acd86c68f470 100644 --- a/client/pages/analysis.vue +++ b/client/pages/analysis.vue @@ -53,7 +53,7 @@ export default { { text: 'Description', value: 'description' }, { text: 'Creation Date', value: 'creation_date' }, { text: 'Galaxy history state', value: 'history_status' }, - { text: 'Galaxy workflow state', value: 'workflow_invocation_status' }, + { text: 'Galaxy workflow state', value: 'status' }, { text: 'Phenotypes', value: 'phenotypes' }, { text: 'Additive covariates', value: 'covariates' }, { text: 'Project', value: 'project.project_name' },