From 737a4b3df7afab3d6f41ecba3e65b5a72daa9cdb Mon Sep 17 00:00:00 2001 From: Hilary James Oliver Date: Fri, 3 Jun 2022 15:53:08 +1200 Subject: [PATCH] Use task icons in gscan, not job icons. --- src/components/cylc/gscan/GScan.vue | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/components/cylc/gscan/GScan.vue b/src/components/cylc/gscan/GScan.vue index ac228c587..2c9ac36e9 100644 --- a/src/components/cylc/gscan/GScan.vue +++ b/src/components/cylc/gscan/GScan.vue @@ -166,7 +166,10 @@ along with this program. If not, see . dark icon > - + @@ -204,7 +207,7 @@ import subscriptionComponentMixin from '@/mixins/subscriptionComponent' import TaskState from '@/model/TaskState.model' import SubscriptionQuery from '@/model/SubscriptionQuery.model' import { WorkflowState } from '@/model/WorkflowState.model' -import Job from '@/components/cylc/Job' +import Task from '@/components/cylc/Task' import Tree from '@/components/cylc/tree/Tree' import WorkflowIcon from '@/components/cylc/gscan/WorkflowIcon' import { addNodeToTree, createWorkflowNode } from '@/components/cylc/gscan/nodes' @@ -215,7 +218,7 @@ import { GSCAN_DELTAS_SUBSCRIPTION } from '@/graphql/queries' export default { name: 'GScan', components: { - Job, + Task, Tree, WorkflowIcon },